Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/ccpn/files: 2.2.2-parallel.patch
Date: Tue, 03 Apr 2012 14:45:42
Message-Id: 20120403144533.62B9B2004C@flycatcher.gentoo.org
1 jlec 12/04/03 14:45:33
2
3 Added: 2.2.2-parallel.patch
4 Log:
5 sci-chemistry/ccpn: Version Bump
6
7 (Portage version: 2.2.0_alpha99/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sci-chemistry/ccpn/files/2.2.2-parallel.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/files/2.2.2-parallel.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-chemistry/ccpn/files/2.2.2-parallel.patch?rev=1.1&content-type=text/plain
14
15 Index: 2.2.2-parallel.patch
16 ===================================================================
17 diff --git a/ccpnmr2.2/c/Makefile b/ccpnmr2.2/c/Makefile
18 index 01fb25a..8e8e1fe 100644
19 --- a/ccpnmr2.2/c/Makefile
20 +++ b/ccpnmr2.2/c/Makefile
21 @@ -5,22 +5,22 @@ all: compile
22 compile: global structure analysis clouds dynamics bayes
23
24 global:
25 - cd memops/global && $(MAKE)
26 + $(MAKE) -C memops/global
27
28 -structure:
29 - cd ccp/structure && $(MAKE)
30 +structure: global
31 + $(MAKE) -C ccp/structure
32
33 -analysis:
34 - cd ccpnmr/analysis && $(MAKE)
35 +analysis: global
36 + $(MAKE) -C ccpnmr/analysis
37
38 -clouds:
39 - cd ccpnmr/clouds && $(MAKE)
40 +clouds: global
41 + $(MAKE) -C ccpnmr/clouds
42
43 -dynamics:
44 - cd ccpnmr/dynamics && $(MAKE)
45 +dynamics: global
46 + $(MAKE) -C ccpnmr/dynamics
47
48 -bayes:
49 - cd other/cambridge/bayes && $(MAKE)
50 +bayes: global
51 + $(MAKE) -C other/cambridge/bayes
52
53 clean: global_clean structure_clean analysis_clean clouds_clean dynamics_clean bayes_clean