This file is indexed.

/usr/share/doc/phylip/examples/tests/Makefile is in phylip 1:3.696+dfsg-5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
# Makefile, tests directory and samples by Catherine Letondal <letondal@pasteur.fr>

test:   testdna testprot testdist testtree

testdna:
	rm -f infile
	ln -s dna.data infile
	make testprog PROGRAM=dnapars
	make testprog PROGRAM=dnaml
	make testprog PROGRAM=dnadist

testprot:
	rm -f infile
	ln -s prot.data infile
	make testprog PROGRAM=protpars
	make testprog PROGRAM=protdist

testdist:
	rm -f infile
	ln -s distance.data infile
	make testprog PROGRAM=neighbor

testtree:
	rm -f intree
	ln -s tree.data intree
	echo 0 > params
	echo l >> params
	echo m >> params
	echo y >> params
	echo r >> params
	phylip drawtree < params > drawtree.out
	phylip drawgram < params > drawgram.out


testprog:
	echo 0 > params
	echo y >> params
	phylip ${PROGRAM} < params > ${PROGRAM}.out
	rm -f outtree outfile

clean:
	rm -f params infile *.out intree outfile outtree *~