legacy_test.sh revision 145620
1#!/bin/sh
2
3# $FreeBSD: head/tools/regression/usr.bin/make/basic/t2/test.t 145620 2005-04-28 13:20:48Z harti $
4
5cd `dirname $0`
6. ../../common.sh
7
8setup_test()
9{
10	cat > ${WORK_DIR}/Makefile << _EOF_
11all:
12	echo hello
13_EOF_
14}
15
16desc_test()
17{
18	echo "A Makefile file with only a 'all:' file dependency specification, and shell command."
19}
20
21eval_cmd $1
22