summaryrefslogtreecommitdiff
path: root/fml/lib/Makefile
blob: 9eed9557caf2db7840475250d8bcd284bfa98681 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
all: html

html: _subdir index.ja.html

index.ja.html: [A-Z]*
	../../doc/bin/dir2url.pl > index.ja.html

_subdir: [A-Z]*
	(cd Language; make html)
	(cd FML; make html)
	(cd File; make html)
	(cd IO; make html)
	(cd MailingList; make html)
	(cd Tie; make html)
	(cd SQL; make html)
	(cd ErrorMessages; make html)

_clean:
	rm -f index.ja.html */index.ja.html

clean:
	(cd ../..;make clean)