1 # Preparation: create foo.c 2 test1: 3 touch foo.c 4 5 # foo.o should match the pattern rule below. 6 test2: foo.o 7 8 foo.o: %.o: %.c 9 echo PASS 10