nheko/Makefile

16 lines
226 B
Makefile
Raw Normal View History

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