diff options
author | portix <portix@gmx.net> | 2011-12-24 01:07:08 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-12-24 01:07:08 +0100 |
commit | 3d4076b117769e5d9e7d2ea10f1a0050802f10fc (patch) | |
tree | f9d03bfeccb44fccc404734091de7e65c86a59e7 /src/Makefile | |
parent | 1f54d13801eb88ceb2c0a9779b9b2b5dc941add1 (diff) | |
download | dwb-3d4076b117769e5d9e7d2ea10f1a0050802f10fc.zip |
Correct SOURCE and HDR in config.mk
--HG--
branch : experimental
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile index 71d13a23..36b3bd39 100644 --- a/src/Makefile +++ b/src/Makefile @@ -16,10 +16,10 @@ $(TARGET): $(OBJ) debug: $(DTARGET) -#%.d: %.c %.h +#%.d: %.c %.h tlds.h # @echo "$(CC) -MM $@" # @$(CC) $(CFLAGS) -MM $< -o $@ -# + %.do: %.c @echo "${CC} $<" @@ -43,6 +43,13 @@ domain.o: tlds.h domain.do: tlds.h + +dependencies: $(DEPS) + +deps: + $(MAKE) -B dependencies + + # #tlds.h: effective_tld_names.dat # @echo gen tlds.h @@ -62,4 +69,4 @@ clean: $(RM) *.o *.do $(TARGET) $(DTARGET) *.d $(RM) tlds.h -.PHONY: clean all cgdb +.PHONY: clean all cgdb deps |