summaryrefslogtreecommitdiffstats
path: root/rtems-test-template/Makefile
blob: 6afcd0a2fb982e700e77c862882ee35ad6ced699 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
#  $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}

clean:

install:
	for i in ${SCRIPTS} ; do \
	  cp $${i} ${INSTALL_DIR}/$${i} ; \
	  chmod +x ${INSTALL_DIR}/$${i} ; \
	done