Add lint rule

This commit is contained in:
Konstantinos Sideris 2017-04-30 15:10:59 +03:00
parent e6fd80f87f
commit 4a7b005c64
5 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,5 @@
SRC := $(shell find include src -type f -type f \( -iname "*.cc" -o -iname "*.h" \))
debug:
@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
@cmake --build build
@ -9,6 +11,9 @@ release-debug:
run:
@./build/nheko
lint:
@clang-format -i $(SRC)
clean:
rm -rf build