forked from aquaskyline/16GT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
21 lines (15 loc) · 844 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
CC = g++
LIBFLAG = -lpthread -lm -lz
CFLAGS = -O3 -funroll-loops -fomit-frame-pointer -maccumulate-outgoing-args -funroll-loops -static-libgcc -mpopcnt -fopenmp -fpermissive -w
all: snapshotSnpcaller bam2snapshot RegionIndexBuilder
%.o : %.cpp
$(CC) $(CFLAGS) -c $^ -o $@
snapshotSnpcaller: snapshotSnpcaller.o SNP.o SAMhandler.o FisherExactTest.o VariantCaller.o SnapshotHandler.o fisher.o likelihood_cache.o ycsq.o SNP_Caller.o SNPFunctions.o interpreter.o lib/lib.a
$(CC) $(CFLAGS) $^ $(LIBFLAG) -o $@
RegionIndexBuilder: readIndex.o indexFunction.o buildRegionList.o
$(CC) $(CFLAGS) $^ -o $@
bam2snapshot: bam2snapshot.o SAMhandler.o SNP.o CounterReader.o SnapshotHandler.o indexFunction.o readIndex.o lib/lib.a
$(CC) $(CFLAGS) $^ $(LIBFLAG) -o $@
clean:
rm -fr *.o */*.o
rm -f snapshotSnpcaller bam2snapshot RegionIndexBuilder