summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2ba1495..07a7811 100644
--- a/Makefile
+++ b/Makefile
@@ -3,13 +3,18 @@ default:
UNAME_S := $(shell uname -s)
-appimage:
+appimage-prep:
cmake -H. -Bbuild/appimage -DCMAKE_INSTALL_PREFIX=/usr
cd build/appimage && make
cd build/appimage && sed -i -e 's#/usr#././#g' pg_top
cd build/appimage && make install DESTDIR=AppDir
+
+appimage: appimage-prep
cd build/appimage && make appimage
+appimage-docker: appimage-prep
+ cd build/appimage && make appimage-docker
+
clean:
-rm -rf build