1# $OpenBSD: mk25,v 1.1 2007/08/05 11:10:11 espie Exp $ 2# verify that curly targets work correctly 3 4.PHONY: a b c d all 5 6all: a b c d 7 8{a,b,c,d}: 9 @echo "Building $@" 10