aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2022-04-25 13:45:01 +0200
committerlonkaars <loek@pipeframe.xyz>2022-04-25 13:45:01 +0200
commit64df55e0b65d74e37987333a33a53ae98378bed2 (patch)
treed1f3c7b7b1820688fe820a9a0e868c5fe7dbbf52 /makefile
parent559736432356e2bb4ce805e60c32353a5582a568 (diff)
code style update + make format works now
Diffstat (limited to 'makefile')
-rw-r--r--makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/makefile b/makefile
index 0f00eaf..01b7bb4 100644
--- a/makefile
+++ b/makefile
@@ -11,6 +11,7 @@ LDFLAGS=-Wl,-gc-sections -lpololu_$(DEVICE) -Wl,-relax
PORT ?= /dev/ttyACM0
SOURCES := $(wildcard *.c)
+HEADERS := $(wildcard *.h)
OBJECTS := $(patsubst %.c,%.o, $(SOURCES))
AVRDUDE=avrdude
@@ -35,7 +36,7 @@ flash: out.hex
$(AVRDUDE) -p $(AVRDUDE_DEVICE) -c avrisp2 -P $(PORT) -U flash:w:out.hex
format:
- find . -name '*.c' -o -name '*.h' | clang-format -i
+ clang-format -i $(SOURCES) $(HEADERS)
compile_commands: clean
bear -- make