File: sub_make_parallel

package info (click to toggle)
hmmer 3.4%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 37,260 kB
  • sloc: ansic: 139,162; perl: 10,213; sh: 3,344; makefile: 2,187; python: 1,110
file content (51 lines) | stat: -rw-r--r-- 1,944 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
From: Michael R. Crusoe <crusoe@debian.org>
Subject: Enable parallel sub-builds
Forwarded: not-needed
--- hmmer.orig/easel/Makefile.in
+++ hmmer/easel/Makefile.in
@@ -530,18 +530,18 @@
 .FORCE:
 
 all:    libeasel.a .FORCE
-	${QUIET_SUBDIR0}miniapps  ${QUIET_SUBDIR1} all
+	+${QUIET_SUBDIR0}miniapps  ${QUIET_SUBDIR1} all
 
 dev:    libeasel.a ${ALL_UTESTS} ${BENCHMARKS} ${EXPERIMENTS} ${EXAMPLES} .FORCE
 	${QUIET_SUBDIR0}miniapps  ${QUIET_SUBDIR1} dev
 
 tests:  ${ALL_UTESTS} 
-	${QUIET_SUBDIR0}miniapps ${QUIET_SUBDIR1} tests
+	+${QUIET_SUBDIR0}miniapps ${QUIET_SUBDIR1} tests
 
 check:  ${ALL_UTESTS} .FORCE
 	@command -v python3 >/dev/null 2>&1 || { echo >&2 "python3 is required for 'make check', but is not in your PATH. Aborting."; exit 1; }
-	${QUIET_SUBDIR0}miniapps  ${QUIET_SUBDIR1} check
-	${QUIET_SUBDIR0}testsuite ${QUIET_SUBDIR1} check
+	+${QUIET_SUBDIR0}miniapps  ${QUIET_SUBDIR1} check
+	+${QUIET_SUBDIR0}testsuite ${QUIET_SUBDIR1} check
 
 # `make dcheck`: run developer testsuite, save output in testsuite/dcheck.report
 dcheck:
--- hmmer.orig/src/Makefile.in
+++ hmmer/src/Makefile.in
@@ -246,16 +246,16 @@
 all:   ${PROGS} ${AUXPROGS} .FORCE
 
 dev:   ${PROGS} ${AUXPROGS} ${UTESTS} ${ITESTS} ${STATS} ${BENCHMARKS} ${EXAMPLES} .FORCE
-	${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} dev
+	+${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} dev
 
 tests: ${PROGS} ${AUXPROGS} ${UTESTS} ${ITESTS} .FORCE
-	${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} tests
+	+${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} tests
 
 check: ${PROGS} ${AUXPROGS} ${UTESTS} ${ITESTS} .FORCE
-	${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} check
+	+${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} check
 
 libhmmer.a: libhmmer-src.stamp .FORCE
-	${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} libhmmer-impl.stamp
+	+${QUIET_SUBDIR0}${IMPLDIR} ${QUIET_SUBDIR1} libhmmer-impl.stamp
 
 libhmmer-src.stamp: ${OBJS}
 	${QUIET_AR}${AR} -r libhmmer.a $? > /dev/null 2>&1