CC=gcc LIB= all: bgzf.o dict.o array.o readseq.o bgzf.o: bgzf.c bgzf.h $(CC) $(DEBUG) -c bgzf.c array.o: array.c array.h $(CC) $(DEBUG) -c array.c dict.o: dict.c dict.h $(CC) $(DEBUG) -c dict.c readseq.o: readseq.c readseq.h $(CC) $(DEBUG) -c readseq.c