blob: 3080598daf42551c55010c8c0c112c3aed07e68d (
plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
#
# $FML: Makefile,v 1.49 2001/10/21 09:19:47 fukachan Exp $
#
all: link
clean:
@ (cd ../..; make clean)
allclean: clean clean_link
rm -f __scan__
clean_link:
for file in * ; do test -h $$file && rm -f $$file || true ; done
scan:
@ (cd ../..; make scan 2>&1) |tee __scan__ || echo 'nothing changed'
@ cp __scan__ /tmp/fmlsrc.__scan__
update:
@ (cd ../..; make update)
check:
@ (cd ../../fml; make check 2>&1 ) | grep -v OK || echo ''
link: clean_link _link
_link:
ln -s ../../fml/doc/ja ja-doc
ln -s ../../fml/doc/en en-doc
ln -s ../../fml/etc
ln -s ../../fml/lib
ln -s ../../fml/lib/FML
ln -s ../../fml/lib/FML/Filter
ln -s ../../fml/lib/FML/CGI
ln -s ../../fml/lib/FML/Process
ln -s ../../fml/lib/FML/Command Command
ln -s ../../fml/lib/FML/Command/Admin AdminCommand
ln -s ../../fml/lib/FML/Command/User UserCommand
ln -s ../../fml/lib/IO
ln -s ../../fml/lib/File
ln -s ../../fml/lib/Tie
ln -s ../../fml/lib/Mail
ln -s ../../fml/lib/Mail/HTML
ln -s ../../fml/lib/Mail/ThreadTrack
ln -s ../../fml/libexec
ln -s /var/spool/ml/elena/log
ln -s ../../cpan/doc doc-devel
ln -s ../../fml/doc/ja/tutorial tutorial
ln -s ../../fml/share/message/euc-jp message-euc-jp
ln -s ../../fml/share/template/euc-jp template-euc-jp
diff:
@ (cd ../..;cvs diff -ub)
test:
@ echo "* IO::* class test"
@ apply perl IO/t/*pl
@ test -d /tmp/fml5 || mkdir /tmp/fml5
@ make -f ../base/Makefile
@ (cd ../cf; make test)
@ echo "* errormails"
@ (cd ../errormails; make check)
regen:
(cd ../../fml/etc; make )
diag:
env PATH=/usr/pkg/bin:$$PATH make check
|