aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 78b5ea6..080690e 100644
--- a/Makefile
+++ b/Makefile
@@ -26,13 +26,15 @@ all: $(PROJECT)
clean:
rm -f $(OBJECTS) $(DEPS)
+FORCE:
+
$(PROJECT): $(OBJECTS) $(DYNSTR) $(SLWEB)
$(CC) $(OBJECTS) $(LDFLAGS) $(LIBS) $(SLWEB_FLAGS) $(DYNSTR_FLAGS) -o $@
-$(DYNSTR):
+$(DYNSTR): FORCE
+cd slweb/dynstr && $(MAKE)
-$(SLWEB):
+$(SLWEB): FORCE
+cd slweb && $(MAKE)
-include $(DEPS)