blob: b8ee1ceeec956dcb2744810fabb920151be607a2 (
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
|
all: link
clean:
@ (cd ../..; make clean)
rm -f __scan__
allclean: clean
rm -f doc
rm -f etc
rm -f lib
rm -f FML
rm -f Ticket
rm -f Process
rm -f IO
rm -f Tie
rm -f Dialect
rm -f MailingList
rm -f libexec
rm -f log
rm -f File
rm -f CGI
rm -f Command
rm -f SQL
scan:
@ (cd ../..; make scan 2>&1) |tee __scan__ || echo 'nothing changed'
update:
@ (cd ../..; make update)
check:
@ (cd ../../fml; make check 2>&1 ) | grep -v OK || echo ''
link:
rm -f doc; ln -s ../../fml/doc
rm -f etc; ln -s ../../fml/etc
rm -f lib; ln -s ../../fml/lib
rm -f FML; ln -s ../../fml/lib/FML
rm -f Ticket; ln -s ../../fml/lib/FML/Ticket
rm -f CGI; ln -s ../../fml/lib/FML/CGI
rm -f Process; ln -s ../../fml/lib/FML/Process
rm -f Command; ln -s ../../fml/lib/FML/Command
rm -f IO; ln -s ../../fml/lib/IO
rm -f File; ln -s ../../fml/lib/File
rm -f SQL; ln -s ../../fml/lib/SQL
rm -f Tie; ln -s ../../fml/lib/Tie
rm -f Dialect; ln -s ../../fml/lib/Dialect
rm -f MailingList; ln -s ../../fml/lib/MailingList
rm -f libexec; ln -s ../../fml/libexec
rm -f log; ln -s /var/spool/ml/elena/log
diff:
@ (cd ../..;cvs diff -ub)
test:
@ echo "* IO::* class test"
@ apply perl IO/t/*pl
@ make -f ../base/Makefile
regen:
(cd ../../fml/etc; make )
(cd ../../;make doc)
|