1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
Author: Michael R. Crusoe <crusoe@debian.org>
Description: Build bamsifter using the system htslib
Forwarded: not-needed
--- trinityrnaseq.orig/trinity-plugins/bamsifter/Makefile
+++ trinityrnaseq/trinity-plugins/bamsifter/Makefile
@@ -1,12 +1,6 @@
+all: bamsifter
+
+bamsifter: sift_bam_max_cov.cpp FORCE
+ $(CXX) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -std=c++11 -o bamsifter sift_bam_max_cov.cpp -Wall -O2 -L./htslib/build/lib/ -I./htslib/build/include -lhts
-
-cwd = $(shell pwd)
-
-sift_bam_max_cov: sift_bam_max_cov.cpp htslib/version.h
- $(CXX) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) -std=c++11 -o _sift_bam_max_cov sift_bam_max_cov.cpp -Wall -O2 -L./htslib/build/lib/ -I./htslib/build/include -lhts
-
-
-htslib/version.h :
- ./build_htslib.sh
-
-
+FORCE:
|