diff options
author | Elias Norberg <xyzzy@kudzu.se> | 2013-01-28 11:37:19 +0100 |
---|---|---|
committer | Elias Norberg <xyzzy@kudzu.se> | 2013-01-28 11:37:19 +0100 |
commit | 56877826f0806bb2618d15f698bf7d665cca0b5e (patch) | |
tree | 3d515bafc3ceb1b65d6fbc02a72198ff1018bc9d /src/Makefile | |
parent | fb2d53b71af4fabafbe01542cf012011f8f27534 (diff) | |
download | dwb-56877826f0806bb2618d15f698bf7d665cca0b5e.zip |
Removed unsued tlds.h-lines in Makefile
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/src/Makefile b/src/Makefile index 217340a3..241759ae 100644 --- a/src/Makefile +++ b/src/Makefile @@ -35,13 +35,6 @@ $(DTARGET): $(DOBJ) tlds.h: tlds.in mktlds-header @echo gen tlds.h @./mktlds-header < tlds.in - @echo "#ifndef TLDS_H" > $@ - @echo "#define TLDS_H" >> $@ - @echo "static char *TLDS_EFFECTIVE[] = {" >> $@ - @sed '/^\/\//d;/^[[:space:]]*$$/d;s/^/ "/;s/$$/",/' $< >> $@ - @echo "NULL," >> $@ - @echo "};" >> $@ - @echo "#endif" >> $@ domain.o: tlds.h @@ -52,19 +45,6 @@ dependencies: $(DEPS) deps: $(MAKE) -B dependencies - -# -#tlds.h: effective_tld_names.dat -# @echo gen tlds.h -# @echo "#ifndef TLDS_H" > $@ -# @echo "#define TLDS_H" >> $@ -# @echo "static char *effective_tlds[] = {" >> $@ -# @sed '/^\/\//d;/^[[:space:]]*$$/d;s/\(.*\)/ "\1",/' $< >> $@ -# @echo -e "\tNULL," >> $@ -# @echo "};" >> $@ -# @echo "#endif" >> $@ - - cgdb: debug cgdb $(DTARGET) |