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

22 lines
382 B
Makefile
Raw Normal View History

2018-05-16 17:59:24 +02:00
all: debug
2018-05-16 18:41:20 +02:00
clean:
2018-05-21 16:28:15 +02:00
rm -f build.ninja rules.ninja cmake_install.cmake CMakeCache.txt
rm -rf CMakeFiles
2018-05-16 17:59:24 +02:00
debug-configure: clean
cmake -GNinja -DCMAKE_BUILD_TYPE=Debug -DASAN=true
2018-05-16 17:59:24 +02:00
configure: clean
cmake -GNinja -DCMAKE_BUILD_TYPE=Release
2018-05-16 17:59:24 +02:00
compile: configure
ninja
debug: debug-configure
ninja
2018-05-21 16:28:15 +02:00
format:
2018-05-21 16:31:52 +02:00
clang-format -i $$(find daemon llarp include | grep -E '\.[h,c](pp)?$$')