mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-15 12:13:24 +00:00
15 lines
183 B
Makefile
15 lines
183 B
Makefile
|
|
all: remove-build clean compile
|
|
|
|
remove-build:
|
|
rm -f build.ninja
|
|
|
|
clean: build.ninja
|
|
ninja clean
|
|
|
|
build.ninja:
|
|
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
|
|
|
|
compile: build.ninja
|
|
ninja
|