blob: d51a58a0c798c83307250263076a5daffdd5f494 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# $FML: Makefile,v 1.2 2001/10/14 22:22:13 fukachan Exp $
#
PERL = perl
TARGETS = ../filter/t/0* ../testmails/text=* ../testmails/multipart=mixed*
all: check check2
check:
$(PERL) ../filter/check.pl $(TARGETS)
check2:
$(PERL) ../filter/check2.pl $(TARGETS)
mesg_analyze:
@ echo "* check BodyCheck basic functions"
../filter/bodycheck.pl ../testmails/text=* \
../testmails/multipart=*
|