michael@0: $(shell \ michael@0: mkdir foo; \ michael@0: touch test.in \ michael@0: ) michael@0: michael@0: all: foo/test.out michael@0: @echo TEST-PASS michael@0: michael@0: foo/%.out: %.in michael@0: cp $< $@ michael@0: michael@0: