File: Makefile

package info (click to toggle)
microbiomeutil 20101212%2Bdfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 49,268 kB
  • ctags: 353
  • sloc: perl: 4,878; ansic: 419; makefile: 94; sh: 27
file content (24 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

DIRS = NAST-iEr ChimeraSlayer WigeoN RESOURCES

all clean:
	X=`pwd`; \
	for i in $(DIRS); \
	do echo '<<<' $$i '>>>'; cd $$X/$$i; make $@; done



test: testNast testWigeon testChimeraSlayer

testNast:
	cd NAST-iEr; make test

testWigeon:
	cd WigeoN; make test

testChimeraSlayer:
	cd ChimeraSlayer; make test