summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-07 19:25:06 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-07 19:25:06 +0300
commitc7c3ee19ee66ab5f3ad57c16f546e35674093c0d (patch)
treebfe5f7129977344e70f9f52d2cab9ec7f744cbc8 /Makefile
parentUse const refs for the deserialized data (diff)
downloadnheko-c7c3ee19ee66ab5f3ad57c16f546e35674093c0d.tar.xz
Use QLabel to display registration errors
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7f97e934..eb8a6663 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,13 @@
-run: build
+run: debug
 	./build/nheko
 
 debug:
 	@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug
-	@make -C build
+	@make -C build -j2
 
 release-debug:
 	@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
-	@make -C build
+	@make -C build -j2
 
 clean:
 	rm -rf build