src/utils/userApps/makefile 1.1

1.1 2009/03/26 19:04:17 hiram
Initial contents, honoring DESTDIR and BINDIR arguments
Index: src/utils/userApps/makefile
===================================================================
RCS file: src/utils/userApps/makefile
diff -N src/utils/userApps/makefile
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ src/utils/userApps/makefile	26 Mar 2009 19:04:17 -0000	1.1
@@ -0,0 +1,11 @@
+include ../../inc/common.mk
+
+INST_LIST = fetchChromSizes
+
+all::
+	@${MKDIR} "${DESTDIR}${BINDIR}"
+	@for P in ${INST_LIST}; do \
+	    ( rm -f "${DESTDIR}${BINDIR}/$${P}" && cp -p $${P} "${DESTDIR}${BINDIR}" && echo "installed $${P}" ) ; \
+	done
+
+# "$Id$"