1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/Makefile
2018-05-27 12:45:04 -04:00

22 lines
382 B
Makefile

all: debug
clean:
rm -f build.ninja rules.ninja cmake_install.cmake CMakeCache.txt
rm -rf CMakeFiles
debug-configure: clean
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DASAN=true
configure: clean
cmake -GNinja -DCMAKE_BUILD_TYPE=Release
compile: configure
ninja
debug: debug-configure
ninja
format:
clang-format -i $$(find daemon llarp include | grep -E '\.[h,c](pp)?$$')