nheko/Makefile

12 lines
108 B
Makefile

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