source: branches/port5/PERL_SCRIPTS/test/Makefile

Last change on this file was 6113, checked in by westram, 15 years ago
  • changed compile warning
File size: 461 bytes
Line 
1
2LIBDIR := $(ARBHOME)/lib
3
4ifdef DARWIN
5SO:=bundle
6else
7SO:=so
8endif
9
10ARB_PM := $(LIBDIR)/ARB.pm
11ARB_SO := $(LIBDIR)/ARB.$(SO)
12
13help:
14        test            test all perl scripts for syntax
15
16test: test.stamp
17
18test.stamp: $(ARB_PM) $(ARB_SO)
19        @echo $(SEP) Testing scripts in PERL_SCRIPTS
20        @perl -c testScripts.pl
21        @perl testScripts.pl || echo "You either lack S::LintSubs and/or Bio::TreeIO or the perl scripts are buggy. We continue anyway.."
22        @touch $@
23
24clean:
25        rm test.stamp
Note: See TracBrowser for help on using the repository browser.