xref: /openbsd/regress/usr.bin/make/mk10 (revision 17df1aa7)
1# $OpenBSD: mk10,v 1.1 2000/12/31 16:44:14 espie Exp $
2
3all: a b/o/d.e z.b
4
5a:
6# Regression test: this will parse as a recursive variable which
7# does not exist, but should not be interpreted as a dynamic variable
8	# ${@D) abcd ${@F}
9# And this is the real one
10	# ${@D} ${@F}
11
12b/o/d.e:
13	# ${@D} ${@F}
14
15.SUFFIXES: .a .b
16
17.a.b:
18	# ${*D} ${*F}
19
20.PHONY: a b/o/d.e
21