File: Makefile

package info (click to toggle)
fastdnaml 1.2.2-18
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,156 kB
  • sloc: ansic: 3,910; sh: 571; makefile: 46
file content (24 lines) | stat: -rw-r--r-- 715 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
24
#!/usr/bin/make -f
# Samples and tests by Catherine Letondal <letondal@pasteur.fr>

TEST_DATA = /usr/share/doc/fastdnaml/examples/tests/fastdnaml.data

test:	fastDNAml fastDNAml_boot

oldfastDNAml:
	cat $(TEST_DATA) | fastDNAml-util frequencies | fastDNAml-util printdata | fastDNAml-util treefile | fastDNAml > fastdnaml.out ; fastDNAml-util clean_checkpoints

fastDNAml:
	cat $(TEST_DATA) | fastDNAml-util printdata | fastDNAml > fastdnaml.out ; fastDNAml-util clean_checkpoints

fastDNAml_boot:
	cat $(TEST_DATA) | fastDNAml-util printdata  > fastdnaml.data.tmp; fastDNAml-util fastDNAml_boot -out -boots 2 -max 2 fastdnaml.data.tmp 2

clean:
	rm -f *.tmp* 
	rm -f *.out 
	rm -f treefile*
	rm -f checkpoint.*