forked from jfisteus/html2xhtml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
24 lines (19 loc) · 832 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# # Don't want this to be done automatically, in order to avoid
# # the dependency with Java. Specific rules are defined instead.
# #
#noinst_javadir = .
#noinst_java_JAVA = DTDCoder.java DTDDeclHandler.java
#JAVAROOT = .
DTD_SRC = DTDCoder.java DTDDeclHandler.java XHTMLEntityResolver.java
DTDLIB_DEST = ../src
DTD_TEMPLATES = template-transitional.xhtml template-strict.xhtml \
template-frameset.xhtml template-11.xhtml \
template-basic10.xhtml template-basic11.xhtml \
template-mp.xhtml template-print10.xhtml
EXTRA_DIST = $(DTD_SRC) $(DTD_TEMPLATES) dtd_index.xml
CLEANFILES = DTDCoder.class DTDDeclHandler.class AttDecl.class ElmDecl.class \
DTDCoder\$$DTDData.class MyStringTokenizer.class
DTDCoder.class: $(DTD_SRC)
javac $(DTD_SRC)
dtdlib: dtd_index.xml DTDCoder.class
java DTDCoder dtd_index.xml $(DTDLIB_DEST)