cleaned a bit and made general Makefile

This commit is contained in:
Phuntsok Drak-pa
2018-06-24 18:59:17 +02:00
parent 8e23eb858e
commit 6d4e29b030
3 changed files with 10 additions and 43 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
release:
@mkdir -p build
@cd build && pwd && cmake -DCMAKE_BUILD_TYPE=Release .. && make
debug:
@mkdir -p build
@cd build && pwd && cmake -DCMAKE_BUILD_TYPE=Debug .. && make
clean:
rm -rf bin/* build/* debug/*