about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-24 19:45:33 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2020-08-24 19:45:33 +0200
commit34c00ef36a5c250618f283c6a2a150fb0a694352 (patch)
treef0a4988fc0842040671f339f96b8291f38039fb2
parent551c1b33d04ad8927f5d11d84d0ab72b6738e324 (diff)
fix(Makefile): entry.o depends on config.h
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6c4216d..4909d6d 100644
--- a/Makefile
+++ b/Makefile
@@ -11,6 +11,8 @@ main.o: main.c core.h timeutil.h config.h
 $(TEMPLATE).o: $(TEMPLATE).c core.h config.h xml.h cgiutil.h timeutil.h
 	$(CC) $(CFLAGS) -I$(ROOT_DIR) -c -o $@ $<
 
+entry.o: config.h entry.c
+
 # only invoked if config.h does not exist
 config.h:
 	$(CP) config.example.h config.h