Replace legacy make with bmake
[dragonfly.git] / usr.bin / make / tests / basic / t2 / test.sh
1 #!/bin/sh
2
3 # $DragonFly: src/usr.bin/make/tests/basic/t2/test.sh,v 1.6 2005/03/01 22:42:28 okumoto Exp $
4
5 . ../../common.sh
6
7 setup_test()
8 {
9         cat > $WORK_BASE/Makefile << _EOF_
10 all:
11         echo hello
12 _EOF_
13 }
14
15 desc_test()
16 {
17         echo "A Makefile file with only a 'all:' file dependency specification, and shell command."
18 }
19
20 eval_cmd $1