blob: c3319c3ea965d7068239bbcca2f880ec34a51c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
all: anal
anal:
@ find . | sort | grep -v CVS | sed 's@./@@'
html: _subdir index.ja.html
_subdir:
(cd Command; make html)
(cd Header; make html)
(cd Process; make html)
(cd Ticket; make html)
(cd Ticket/Model; make html)
(cd CGI; make html)
index.ja.html: *.pm [A-Z]*
../../../doc/bin/dir2url.pl > index.ja.html
_clean:
rm -f index.ja.html */index.ja.html
clean:
(cd ../../..;make clean)
|