the repository which powers this website
Replace useless make rules with generic $(OBJECTS) dependency
Signed-off-by: Lars Hjemli <[email protected]>
Lars Hjemli 2006-12-09
parent 0d169ad · commit c76a52b
-rw-r--r--Makefile6
1 files changed, 1 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 1470c0a2..4e72b07e 100644
--- a/Makefile
+++ b/Makefile
@@ -17,8 +17,4 @@ clean:
cgit: $(OBJECTS)
$(CC) -o cgit $(OBJECTS) $(EXTLIBS)
-cgit.o: cgit.h git.h config.o html.o
-
-config.o: cgit.h git.h html.c
-
-html.o: cgit.h git.h html.c
+$(OBJECTS): cgit.h git.h