Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
PASSFinder/Makefile
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
26 lines (19 sloc)
420 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# define the C compiler to use | |
CC=gcc | |
# define any compile-time flags | |
CFLAGS=-Wall -g -std=c99 | |
CLIBS=-lz -lhts | |
# define the C source files | |
SRCS=main.c config.c htsutils.c | |
# define the C object files | |
OBJS=$(SRCS:.c=.o) | |
# define the executable file | |
MAIN=PASSFinder | |
all: $(MAIN) | |
$(MAIN): $(OBJS) | |
$(CC) $(CFLAGS) -o $(MAIN) $(OBJS) $(CLIBS) | |
.c.o: | |
$(CC) $(CFLAGS) -c $< -o $@ | |
.PHONY: clean | |
clean: | |
rm -f *.o $(MAIN) |