mkfs: drop support for running on DOS
[minix.git] / usr.bin / make / unit-tests / sysv
blob2d304f6b44952d519367115f6a1b5f7c6f2ab0cb
1 # $Id: sysv,v 1.2 2011/06/03 21:10:42 sjg Exp $
3 FOO ?=
4 FOOBAR = $(FOO:=bar)
6 _this := ${.PARSEDIR}/${.PARSEFILE}
8 B = /b
9 S = /
10 FUN = ${B}${S}fun
11 SUN = the Sun
13 # we expect nothing when FOO is empty
14 all: foo fun
16 foo:
17         @echo FOOBAR = $(FOOBAR)
18 .if empty(FOO)
19         @FOO="foo fu" ${.MAKE} -f ${_this} foo
20 .endif
22 fun:
23         @echo ${FUN:T}
24         @echo ${FUN:${B}${S}fun=fun}
25         @echo ${FUN:${B}${S}%=%}
26         @echo ${In:L:%=% ${SUN}}