diff options
author | portix <portix@gmx.net> | 2011-09-27 01:26:30 +0200 |
---|---|---|
committer | portix <portix@gmx.net> | 2011-09-27 01:26:30 +0200 |
commit | f1d665969285407c4cb6d65d72a26376a13a988e (patch) | |
tree | cb8e8c7f3f890ec1d9690472c55ba79170a2aa56 /util/Makefile | |
parent | 39c9de75049a9c9e75c506ad1f1e53abcc4911d5 (diff) | |
download | dwb-f1d665969285407c4cb6d65d72a26376a13a988e.zip |
Select elements in settings, forget settings.html, keys.html
--HG--
branch : develop
Diffstat (limited to 'util/Makefile')
-rw-r--r-- | util/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/util/Makefile b/util/Makefile new file mode 100644 index 00000000..e60a1c46 --- /dev/null +++ b/util/Makefile @@ -0,0 +1,19 @@ +include ../config.mk +OUTFILES=../$(LIBDIR)/keys.html ../$(LIBDIR)/settings.html +SETTINGS=../$(LIBDIR)/settings.html +KEYS=../$(LIBDIR)/keys.html + +all: $(OUTFILES) + +$(KEYS): keys.in + @echo gen keys.html + @$(shell ./generate_keys.sh $< $@) + +$(SETTINGS): settings.in + @echo gen settings.html + @$(shell ./generate_settings.sh $< $@) + +clean: + $(RM) $(OUTFILES) + +.PHONY: clean |