1rule cc 2 command = gcc -c -o $outs $ins 3 4build foo.o: cc foo.c 5 6build bar.o: cc bar.c 7 8default foo.o bar.o 9