Develop and Download Open Source Software

Browse Subversion Repository

Contents of /topo/body/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 72 - (show annotations) (download)
Thu Nov 3 04:58:21 2011 UTC (12 years, 4 months ago) by ohkubo-k
File size: 684 byte(s)
111009 release
1 include ../../makefile.defs
2
3 SOURCE = topo.xml
4 TMPFILE = topo2.xml
5 XSLFILE = topo2html.xsl
6 OUTPUT = $(OUT_DIR)/topo-body.html
7
8 all: $(OUTPUT)
9
10 $(TMPFILE) : $(SOURCE)
11 sed -f preconv.sed $(SOURCE) \
12 | sed -f prejoint.sed \
13 | $(JAVA) clsepw.util.Greek2Unicode - addKey check \
14 > $(TMPFILE)
15
16 $(OUTPUT): $(TMPFILE)
17 $(JAVA) -Xmx512M -cp $(XALAN_DIR) -jar $(XALAN_DIR)/xalan.jar -in $(TMPFILE) -xsl $(XSLFILE) \
18 | $(JAVA) clsepw.util.LatinExtConverter - check \
19 | sed -f conv.sed \
20 | sed -f joint.sed \
21 | $(JAVA) clsepw.util.FixIndent - \
22 | $(JAVA) clsepw.util.AppendDtKeys - \
23 | sed -f $(MISC_DIR)/greekkey.sed \
24 | nkf -s \
25 > $@
26
27 clean:
28 rm -rf $(TMPFILE) $(OUTPUT)

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26