diff options
author | portix <portix@gmx.net> | 2011-11-19 13:28:52 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-11-19 13:28:52 +0100 |
commit | 54206686d0c3bb1e53a9cbe273f5efefc01307e7 (patch) | |
tree | 72b3c32685a3e49541d6a86a4718aff198bb70f2 /util/Makefile | |
parent | 022a0289d1e95fcb620d0533010f872b45ca8c75 (diff) | |
download | dwb-54206686d0c3bb1e53a9cbe273f5efefc01307e7.zip |
Include effective tlds as a header, no need to read the lib-file on start
--HG--
branch : develop
rename : util/tlds.in => src/tlds.in
Diffstat (limited to 'util/Makefile')
-rw-r--r-- | util/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/util/Makefile b/util/Makefile index cc0a43df..013319bd 100644 --- a/util/Makefile +++ b/util/Makefile @@ -1,7 +1,7 @@ include ../config.mk SETTINGS=../$(LIBDIR)/settings.html KEYS=../$(LIBDIR)/keys.html -TLDS=../$(LIBDIR)/tlds.txt +TLDS=../$(SRCDIR)/tlds.h OUTFILES=$(SETTINGS) $(KEYS) $(TLDS) all: $(OUTFILES) @@ -14,10 +14,6 @@ $(SETTINGS): settings.in @echo gen settings.html @$(shell ./generate_settings.sh $< $@) -$(TLDS): tlds.in - @echo gen tlds.txt - @sed '/^\/\/\|^\s*$$/d' $< > $@ - clean: $(RM) $(OUTFILES) |