diff options
Diffstat (limited to 'regress/usr.bin/make/mk25')
-rw-r--r-- | regress/usr.bin/make/mk25 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/regress/usr.bin/make/mk25 b/regress/usr.bin/make/mk25 new file mode 100644 index 00000000000..e520e49c721 --- /dev/null +++ b/regress/usr.bin/make/mk25 @@ -0,0 +1,9 @@ +# $OpenBSD: mk25,v 1.1 2007/08/05 11:10:11 espie Exp $ +# verify that curly targets work correctly + +.PHONY: a b c d all + +all: a b c d + +{a,b,c,d}: + @echo "Building $@" |