1blast: blast.c blast.h 2 cc -DTEST -o blast blast.c 3 4test: blast 5 blast < test.pk | cmp - test.txt 6 7clean: 8 rm -f blast blast.o 9