summaryrefslogtreecommitdiff
path: root/tools/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/Makefile b/tools/Makefile
new file mode 100644
index 00000000..a8b62b81
--- /dev/null
+++ b/tools/Makefile
@@ -0,0 +1,15 @@
+include ../config.mk
+
+TARGET=dwb_em
+
+all: $(TARGET)
+
+$(TARGET): dwb_em.in
+ @echo gen $@
+ $(shell sed 's#@SYSTEM_DIR@#$(DATADIR)/$(REAL_NAME)/$(EXTENSIONDIR)#' $< > $@)
+ @chmod 755 $@
+
+clean:
+ rm -f $(TARGET)
+
+.PHONY: clean