matrixion/Makefile

16 lines
241 B
Makefile
Raw Normal View History

debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
@cmake --build build
2017-04-06 04:07:53 +03:00
release-debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@cmake --build build
run:
@./build/nheko
2017-04-06 14:58:48 +03:00
2017-04-06 04:07:53 +03:00
clean:
rm -rf build
.PHONY: build