summary refs log tree commit diff
path: root/Makefile
blob: 974310931baf928873e236750648cc42a663148c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
debug:
	@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
	@cmake --build build

release-debug:
	@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
	@cmake --build build

run:
	@./build/nheko

clean:
	rm -rf build

.PHONY: build