summary refs log tree commit diff
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-06 14:58:48 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-06 14:58:48 +0300
commite1f7ef88cdd425daa890b3ad81c42586397d0d33 (patch)
tree24d251f6a3e16485c61a30dcbe66bc6f13c83463 /Makefile
parentAdd missing Makefile (diff)
downloadnheko-e1f7ef88cdd425daa890b3ad81c42586397d0d33.tar.xz
Add rule for release builds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d42d768b..fc3cb5cf 100644
--- a/Makefile
+++ b/Makefile
@@ -5,6 +5,10 @@ build:
 	@cmake -H. -Bbuild
 	@make -C build
 
+release:
+	@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
+	@make -C build
+
 clean:
 	rm -rf build