summaryrefslogtreecommitdiff
path: root/util/Makefile
diff options
context:
space:
mode:
authorportix <portix@gmx.net>2011-09-27 01:26:30 +0200
committerportix <portix@gmx.net>2011-09-27 01:26:30 +0200
commitf1d665969285407c4cb6d65d72a26376a13a988e (patch)
treecb8e8c7f3f890ec1d9690472c55ba79170a2aa56 /util/Makefile
parent39c9de75049a9c9e75c506ad1f1e53abcc4911d5 (diff)
downloaddwb-f1d665969285407c4cb6d65d72a26376a13a988e.zip
Select elements in settings, forget settings.html, keys.html
--HG-- branch : develop
Diffstat (limited to 'util/Makefile')
-rw-r--r--util/Makefile19
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