Skip to content

Commit

Permalink
fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
MPIBR-tushevg committed Sep 13, 2018
1 parent 7d47220 commit bd76d8f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
rm -f *.o $(MAIN)

0 comments on commit bd76d8f

Please sign in to comment.