summaryrefslogtreecommitdiffstats
path: root/cvs-helpers
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2009-04-09 18:14:14 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2009-04-09 18:14:14 +0000
commitafc70d5f8e193620231005cf1c4718ecbc7d4bea (patch)
tree4b328954b4fd3a9c85dc71940f0dd6bc1e69add7 /cvs-helpers
parent2009-04-09 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-testing-afc70d5f8e193620231005cf1c4718ecbc7d4bea.tar.bz2
2009-04-09 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile, cvs-helpers/Makefile: New files.
Diffstat (limited to 'cvs-helpers')
-rw-r--r--cvs-helpers/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/cvs-helpers/Makefile b/cvs-helpers/Makefile
new file mode 100644
index 0000000..3a8d824
--- /dev/null
+++ b/cvs-helpers/Makefile
@@ -0,0 +1,20 @@
+#
+# $Id$
+#
+
+INSTALL_DIR=../bin
+SCRIPTS=cvscommit mkChangeLogList prepend
+
+all: prep ${SCRIPTS} install
+
+prep:
+ test -d ${INSTALL_DIR} || mkdir ${INSTALL_DIR}
+
+clean:
+
+install:
+ for i in ${SCRIPTS} ; do \
+ cp $${i} ${INSTALL_DIR}/$${i} ; \
+ chmod +x ${INSTALL_DIR}/$${i} ; \
+ done
+