diff --git a/Makefile b/Makefile index de828b9..3622791 100644 --- a/Makefile +++ b/Makefile @@ -12,16 +12,15 @@ SRCS=main.c config.c htsutils.c OBJS=$(SRCS:.c=.o) # define the executable file -MAIN=fastqSeqStats +MAIN=PASSFinder all: $(MAIN) - $(MAIN): $(OBJS) -$(CC) $(CFLAGS) $(CLIBS) -o $(MAIN) $(OBJS) + $(CC) $(CFLAGS) -o $(MAIN) $(OBJS) $(CLIBS) .c.o: -$(CC) $(CFLAGS) $(CLIBS) -c $< -o $@ + $(CC) $(CFLAGS) -c $< -o $@ .PHONY: clean clean: -rm -f *.o $(MAIN) \ No newline at end of file + rm -f *.o $(MAIN)