summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorThomas Schmucker <ts@its1.de>2024-10-28 18:03:34 +0100
committerThomas Schmucker <ts@its1.de>2024-10-28 18:03:34 +0100
commit2458e6aa1658b2cc5b6349b89f1276873554ad6f (patch)
tree751ca4be139d1e0ce28d4300eb381ed4843fa39f /makefile
parent8859b6b8c78beca455e1273b5a31f09e165eed03 (diff)
downloaduse-mosquitto-2458e6aa1658b2cc5b6349b89f1276873554ad6f.tar.gz
use-mosquitto-2458e6aa1658b2cc5b6349b89f1276873554ad6f.tar.bz2
use-mosquitto-2458e6aa1658b2cc5b6349b89f1276873554ad6f.zip
Verschiebe die Konfiguration nach 'src'
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 536bcd2..2365415 100644
--- a/makefile
+++ b/makefile
@@ -14,10 +14,10 @@ debug: CFLAGS+=-g
14$(BINARY): $(OBJ_FILES) | bin 14$(BINARY): $(OBJ_FILES) | bin
15 cc $(LDFLAGS) $^ -o $@ 15 cc $(LDFLAGS) $^ -o $@
16 16
17obj/%.o: src/%.c include/config.h | obj 17obj/%.o: src/%.c src/config.h | obj
18 cc $(CFLAGS) -c $< -o $@ 18 cc $(CFLAGS) -c $< -o $@
19 19
20include/config.h: 20src/config.h:
21 cp config.h.in $@ 21 cp config.h.in $@
22 22
23bin obj: 23bin obj: