Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 181 B
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