Changes the install line to be a copy instead of a move
[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
5
6 all: $(TARGETS)
7
8 install: $(TARGETS)
9         cp $^ ../bin/
10
11 clean:
12         rm -f $(TARGETS)
13         for f in $(TARGETS); do rm -rf $$f.dSYM; done;