Makefile 127 字节
Newer Older
M
Mark Adler 已提交
1 2 3 4 5 6 7 8
blast: blast.c blast.h
	cc -DTEST -o blast blast.c

test: blast
	blast < test.pk | cmp - test.txt

clean:
	rm -f blast blast.o