diff tools/Makefile.pmake @ 174:9008ac31efbd

Install scripts and M4 macros in tools/ sub-directory. Invoke automake to install scripts and pkgdata file.
author Thinker K.F. Li <thinker@branda.to>
date Fri, 31 Oct 2008 10:57:47 +0800
parents tools/Makefile@4d2e28188460
children 586e50f82c1f
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tools/Makefile.pmake	Fri Oct 31 10:57:47 2008 +0800
@@ -0,0 +1,19 @@
+BINS= svg2code.py
+M4SCRIPTS= mb_c_header.m4 mb_c_source.m4 foreach.m4
+PREFIX?= /usr/local/
+
+all:
+
+install:
+.for i in $(BINS)
+	$(INSTALL) -m 755 ${i} ${PREFIX}bin/
+.endfor
+	$(INSTALL) -d ${PREFIX}share/mb
+.for i in $(M4SCRIPTS)
+	$(INSTALL) ${i} ${PREFIX}share/mb/
+.endfor
+
+clean:
+	for i in *~; do \
+		echo "delete $$i"; rm -f $$i; \
+	done