--- /dev/null
+CLASSPATH=$(CLASSBASE):/usr/local/java/saxon-6.4.3/saxon.jar
+
+all: $(CLASSFILES)
+ -@for f in $(SUBDIRS); do \
+ if [ "$$f" != "__PHONY__" ]; then \
+ cd $$f; make all; cd ..; \
+ fi \
+ done
+
+clean:
+ rm -f *.class
+ -@for f in $(SUBDIRS); do \
+ if [ "$$f" != "__PHONY__" ]; then \
+ cd $$f; make clean; cd ..; \
+ fi \
+ done
+
+jar: all
+ jar cf ../../saxon643.jar com
+
+%.class : %.java
+ javac -classpath $(CLASSPATH) \
+ -sourcepath $(SOURCEPATH) \
+ -g -d $(CLASSBASE) \
+ $<
+
+includes:
+ classlist $(VPATH) > Makefile.incl
+ -@for f in $(SUBDIRS); do \
+ if [ "$$f" != "__PHONY__" ]; then \
+ if [ -d "$$f" -a -f "$$f/Makefile" ]; then \
+ cd $$f; make includes; cd ..; \
+ else if [ ! -d "$$f" ]; then \
+ mkdir $$f; \
+ fi; \
+ fi; \
+ fi; \
+ done
--- /dev/null
+CLASSFILES=CVS.class \
+Callout.class \
+CalloutEmitter.class \
+ColumnScanEmitter.class \
+ColumnUpdateEmitter.class \
+CopyEmitter.class \
+FormatCallout.class \
+FormatGraphicCallout.class \
+FormatTextCallout.class \
+FormatUnicodeCallout.class \
+LineCountEmitter.class \
+NumberLinesEmitter.class \
+Table.class \
+Text.class \
+TextFactory.class \
+Verbatim.class