File: bamsifter_build

package info (click to toggle)
trinityrnaseq 2.15.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 468,004 kB
  • sloc: perl: 49,905; cpp: 17,993; java: 12,489; python: 3,282; sh: 1,989; ansic: 985; makefile: 717; xml: 62
file content (23 lines) | stat: -rw-r--r-- 754 bytes parent folder | download | duplicates (3)
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: