File: bamsifter_build

package info (click to toggle)
trinityrnaseq 2.11.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 417,528 kB
  • sloc: perl: 48,420; cpp: 17,749; java: 12,695; python: 3,124; sh: 1,030; ansic: 983; makefile: 688; xml: 62
file content (23 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (2)
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: