summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-22 16:33:29 +0200
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-12-22 16:33:29 +0200
commita3c162950c326d0e74a9811871e0aceab0846cc0 (patch)
tree2845265c21a3538f1154071132f90754b25ea82d /Makefile
parentde61663e422feb3d5614bbc1de304f6fb0c7d533 (diff)
Use ninja on travis
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 20d79eda..2467189f 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
@cmake --build build
-release-debug:
+ci:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
@@ -17,7 +17,7 @@ linux-appimage:
linux-install:
cp -f nheko*.AppImage ~/.local/bin
-macos-app: release-debug
+macos-app: release
@./.ci/macos/deploy.sh
macos-app-install:
@@ -43,5 +43,3 @@ docker-app-image: image
clean:
rm -rf build
-
-.PHONY: build app dmg