From a265028aaf000c09e9cf82249d068edef84969cb Mon Sep 17 00:00:00 2001 From: q66 Date: Thu, 22 Oct 2015 21:44:50 +0100 Subject: [PATCH] keep track of dependencies in octabuild makefile a bit --- Makefile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0127162..45d812d 100644 --- a/Makefile +++ b/Makefile @@ -19,4 +19,12 @@ cubescript.o: $(CUBESCRIPT_PATH)/cubescript.cc $(CXX) $(CXXFLAGS) $(OB_CXXFLAGS) -c -o $@ $< clean: - rm -f $(FILES) obuild \ No newline at end of file + rm -f $(FILES) obuild + +main.o: globs.hh tpool.hh +main.o: $(CUBESCRIPT_PATH)/cubescript.hh + +globs.o: globs.hh +globs.o: $(CUBESCRIPT_PATH)/cubescript.hh + +cubescript.o: $(CUBESCRIPT_PATH)/cubescript.hh \ No newline at end of file