Added framework for methylseq analysis.
[htsworkflow.git] / htswanalysis / src / Makefile
1 CPPFLAGS=-g -Wall -O3 -I/opt/local/include
2 LDFLAGS=-lgsl -lgslcblas -lm -L/opt/local/lib
3
4 TARGETS=complexity_count qPCR profile_reads_against_features profile_reads_wig count_reads_in_peaks ValidationDesign/refine_peaks Methylseq/Methylseq_Analysis
5
6 all: $(TARGETS)
7
8 ValidationDesign/refine_peaks: ValidationDesign/refine_peaks.cpp
9         cd ValidationDesign && $(MAKE)
10
11 Methhylseq/Methylseq_Analysis: Methylseq/Methylseq_Analysis.cpp
12         cd Methylseq && $(MAKE)
13
14 install: $(TARGETS)
15         cp $^ ../bin/
16
17 clean:
18         rm -f $(TARGETS)
19         for f in $(TARGETS); do rm -rf $$f.dSYM; done;