summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index b63a27b..518a16f 100644
--- a/Makefile
+++ b/Makefile
@@ -10,9 +10,11 @@ OBJECTS = $(patsubst %.c,%.o,$(SOURCES))
.PHONY: all clean
all: $(TARGETS)
+ @$(MAKE) -C url_handler all
clean:
rm -f $(TARGETS) *.o
+ @$(MAKE) -C url_handler clean
$(TARGETS): %: %.o $(OBJECTS)