File: Makefile.am

package info (click to toggle)
apbs 1.0.0-2
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 38,840 kB
  • ctags: 7,893
  • sloc: ansic: 44,537; xml: 21,399; sh: 20,613; fortran: 17,796; yacc: 2,922; python: 2,804; makefile: 567; lex: 294; sed: 205; java: 134; awk: 26
file content (52 lines) | stat: -rw-r--r-- 1,818 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
52
## ###########################################################################
## File:    Makefile.am
##
## Purpose: Automatically generate Makefile.in for autoconf using automake.
##
## Notes:   The final makefile produced by autoconf will generate tests
##			for all APBS example directories.
##
##
## Author:  Todd Dolinsky
## ###########################################################################

$(srcdir)/Makefile.in:

Makefile:

#SUBDIRS = actin-dimer alkanes born FKBP hca-bind ion-pmf ion-protein ionize pka-lig point-pmf protein-rna smpbe solv 

clean:
	cd actin-dimer; make clean
	cd alkanes; make clean
	cd born; make clean
	cd FKBP; make clean
	cd hca-bind; make clean
	cd ion-pmf; make clean
	cd ion-protein; make clean
	cd ionize; make clean
	cd pka-lig; make clean
	cd point-pmf; make clean
	cd protein-rna; make clean
	cd smbe; make clean
	cd solv; make clean

test:
	rm -f TESTRESULTS.log
	touch TESTRESULTS.log
	cd actin-dimer; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd alkanes; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd born; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd FKBP; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd hca-bind; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd ion-pmf; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd ion-protein; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd ionize; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd pka-lig; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd point-pmf; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd protein-rna; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd smpbe; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log
	cd solv; make test; cat TESTRESULTS.log >> ../TESTRESULTS.log

test.serial: test