source:
trunk/PERL_SCRIPTS/test/Makefile
Last change on this file was 17618, checked in by westram, 7 years ago | |
---|---|
File size: 381 bytes |
Rev | Line | |
---|---|---|
[5857] | 1 | |
[5878] | 2 | LIBDIR := $(ARBHOME)/lib |
3 | ||
[11805] | 4 | ifeq ($(DARWIN),1) |
[5878] | 5 | SO:=bundle |
6 | else | |
7 | SO:=so | |
8 | endif | |
9 | ||
10 | ARB_PM := $(LIBDIR)/ARB.pm | |
11 | ARB_SO := $(LIBDIR)/ARB.$(SO) | |
12 | ||
[5857] | 13 | help: |
[8319] | 14 | @echo "test tests all perl scripts for syntax" |
[5857] | 15 | |
[17618] | 16 | test: test.stamp Makefile |
[5878] | 17 | |
18 | test.stamp: $(ARB_PM) $(ARB_SO) | |
19 | @echo $(SEP) Testing scripts in PERL_SCRIPTS | |
[5857] | 20 | @perl -c testScripts.pl |
[8318] | 21 | @perl testScripts.pl |
[5878] | 22 | @touch $@ |
23 | ||
24 | clean: | |
[16223] | 25 | -rm test.stamp |
Note: See TracBrowser
for help on using the repository browser.