blob: aabd8c7a570fdfac7ed37c7ae0e3d3596bd8f67e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#
# $FML: Makefile,v 1.4 2001/04/22 12:45:46 fukachan Exp $
#
TARGET_DIR = ../../../Documentation/ja/tutorial
all: export
html:
sgmltools -v -b html -j "-v" fml-devel.sgml 2>&1 |\
uniq
clean:
find . -type f -print |grep '~' |perl -nple unlink
rm -fr fml-devel
export: html
rsync -a fml-devel/@*/ $(TARGET_DIR)/
rsync -a *.gif $(TARGET_DIR)/
|