matrixion/Makefile
2017-04-06 14:58:48 +03:00

15 lines
181 B
Makefile

run: build
@./build/nheko
build:
@cmake -H. -Bbuild
@make -C build
release:
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
@make -C build
clean:
rm -rf build
.PHONY: build