summaryrefslogtreecommitdiff
path: root/fml/lib/Makefile
blob: 02b7effc8f98931c9b3cc24cbb444fcbb2a5390c (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 Dialect; 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)