# Test makefile with lots of parallelism.
# (heh heh heh...)

OBJS=aaa.foo bbb.foo ccc.foo ddd.foo eee.foo \
     fff.foo ggg.foo hhh.foo iii.foo jjj.foo kkk.foo

%.foo:
	echo $*; sleep 10; echo $* > $*.foo

test: $(OBJS)
	cat $(OBJS) >test
