Makefile 127 B

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