From bd76d8fab52cef6c46bf19b029e746abc65dcf08 Mon Sep 17 00:00:00 2001 From: Georgi Tushev Date: Thu, 13 Sep 2018 15:06:51 +0200 Subject: [PATCH] fix Makefile --- Makefile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) 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)