diff options
| author | Thomas Schmucker <ts@its1.de> | 2024-10-28 18:03:34 +0100 |
|---|---|---|
| committer | Thomas Schmucker <ts@its1.de> | 2024-10-28 18:03:34 +0100 |
| commit | 2458e6aa1658b2cc5b6349b89f1276873554ad6f (patch) | |
| tree | 751ca4be139d1e0ce28d4300eb381ed4843fa39f /makefile | |
| parent | 8859b6b8c78beca455e1273b5a31f09e165eed03 (diff) | |
| download | use-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-- | makefile | 4 |
1 files changed, 2 insertions, 2 deletions
| @@ -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 | ||
| 17 | obj/%.o: src/%.c include/config.h | obj | 17 | obj/%.o: src/%.c src/config.h | obj |
| 18 | cc $(CFLAGS) -c $< -o $@ | 18 | cc $(CFLAGS) -c $< -o $@ |
| 19 | 19 | ||
| 20 | include/config.h: | 20 | src/config.h: |
| 21 | cp config.h.in $@ | 21 | cp config.h.in $@ |
| 22 | 22 | ||
| 23 | bin obj: | 23 | bin obj: |
