nheko/Makefile

16 lines
181 B
Makefile
Raw Normal View History

2017-04-06 03:07:53 +02:00
run: build
@./build/nheko
build:
@cmake -H. -Bbuild
@make -C build
2017-04-06 13:58:48 +02:00
release:
@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
@make -C build
2017-04-06 03:07:53 +02:00
clean:
rm -rf build
.PHONY: build