Develop and Download Open Source Software

Browse Subversion Repository

Contents of /shakespeare/onions/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 70 - (show annotations) (download)
Thu Nov 3 04:53:11 2011 UTC (12 years, 4 months ago) by ohkubo-k
File size: 1167 byte(s)


1 include ../../makefile.defs
2
3 HEADSRC = onions-head0.html
4 SOURCE = onions.xml
5 TMPFILE = onions2.xml
6 XSLFILE = onions2html.xsl
7
8 HEADOUT = $(OUT_DIR)/onions/onions-head.html
9 OUTPUT = $(OUT_DIR)/onions/onions-body0.html
10
11 all: $(OUT_DIR)/onions $(HEADOUT) $(OUTPUT)
12
13 $(OUT_DIR)/onions:
14 mkdir -p $(OUT_DIR)/onions
15
16 $(HEADOUT): $(HEADSRC)
17 $(JAVA) clsepw.util.LatinExtConverter $(HEADSRC) check \
18 | sed -e '/^<meta.*/d' \
19 | nkf -s \
20 > $(HEADOUT)
21
22 $(TMPFILE): $(SOURCE)
23 sed -f preconv.sed $(SOURCE) \
24 | sed -f prejoint.sed \
25 > $(TMPFILE)
26
27 $(OUTPUT): $(TMPFILE)
28 $(JAVA) -Xmx512M -cp $(XALAN_DIR) -jar $(XALAN_DIR)/xalan.jar -in $(TMPFILE) -xsl $(XSLFILE) \
29 | sed -f conv.sed \
30 | sed -f ../dyce/bibljoint.sed \
31 | sed -f joint.sed \
32 | $(JAVA) clsepw.shakespeare.FixBiblNum - \
33 | sed -f ../dyce/biblconv.sed \
34 | $(JAVA) clsepw.util.LatinExtConverter - check \
35 | $(JAVA) clsepw.util.AppendDtKeys - \
36 | $(JAVA) clsepw.util.FixDtIdHtml - \
37 | $(JAVA) clsepw.shakespeare.AppendRefInDic - onions \
38 | $(JAVA) clsepw.util.AppendGreekKey - \
39 | sed -f $(MISC_DIR)/greekkey.sed \
40 | nkf -s \
41 > $(OUTPUT)
42
43 clean:
44 rm -rf $(TMPFILE) $(HEADOUT) $(OUTPUT)

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