summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-02-16 16:16:42 -0600
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-02-16 16:16:42 -0600
commit0d5498722ab55705f5947c4640c89a2b0ae8ee87 (patch)
treecf3d5698023199696b726379088c4b4231f66ea8
parentReflect move to git. (diff)
downloadrtems-testing-0d5498722ab55705f5947c4640c89a2b0ae8ee87.tar.bz2
Correct this Makefile.
It appears that this was really the Makefile from another directory.
-rw-r--r--rtems-test-template/Makefile12
1 files changed, 1 insertions, 11 deletions
diff --git a/rtems-test-template/Makefile b/rtems-test-template/Makefile
index 6afcd0a..c89bb94 100644
--- a/rtems-test-template/Makefile
+++ b/rtems-test-template/Makefile
@@ -2,19 +2,9 @@
# $Id: Makefile,v 1.3 2010/06/21 12:37:03 joel Exp $
#
-INSTALL_DIR=../bin
-SCRIPTS=commit-with-changelog-diff commit mkChangeLogList prepend mktest
-
-all: prep ${SCRIPTS} install
-
-prep:
- test -d ${INSTALL_DIR} || mkdir ${INSTALL_DIR}
+all:
clean:
install:
- for i in ${SCRIPTS} ; do \
- cp $${i} ${INSTALL_DIR}/$${i} ; \
- chmod +x ${INSTALL_DIR}/$${i} ; \
- done