You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by an...@locus.apache.org on 2000/02/07 22:49:27 UTC

cvs commit: xml-xerces/java/src/org/xml/sax/helpers Makefile

andyc       00/02/07 13:49:27

  Modified:    java/src Makefile
               java/src/org/xml/sax Makefile
               java/src/org/xml/sax/helpers Makefile
  Added:       java/src/org/xml/sax/ext Makefile
  Log:
  Makefile updates for SAX2beta.
  
  Revision  Changes    Path
  1.13      +9 -9      xml-xerces/java/src/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/Makefile,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- Makefile	2000/02/01 22:00:15	1.12
  +++ Makefile	2000/02/07 21:49:23	1.13
  @@ -32,7 +32,7 @@
   apidocs: ../docs/apiDocs/index.html
   ../docs/apiDocs/index.html: classfiles_updated
   
  -	${JDK12BIN}/javadoc -windowtitle "Xerces ${PRODUCVERSION_DOT} API" \
  +	${JDK12BIN}/javadoc -windowtitle "Xerces ${PRODUCTVERSION_DOT} API" \
   		-splitindex -header "Xerces ${PRODUCTVERSION_DOT}" \
   		-version  \
   		-d ../docs/apiDocs ${PACKAGES}
  @@ -137,9 +137,9 @@
   	${MKDIR} ../class/org/xml/sax/helpers
   	${CP}  ../src/org/xml/sax/helpers/*.class			../class/org/xml/sax/helpers
   
  -#-src/org/xml/sax/misc
  -	${MKDIR} ../class/org/xml/sax/misc
  -	${CP}  ../src/org/xml/sax/misc/*.class			../class/org/xml/sax/misc
  +#-src/org/xml/sax/ext
  +	${MKDIR} ../class/org/xml/sax/ext
  +	${CP}  ../src/org/xml/sax/ext/*.class			../class/org/xml/sax/ext
   
   #make the first jar file
   	echo ${PRODUCTVERSION}> ../class/Xerces_Ver_${PRODUCTVERSION}.info
  @@ -284,9 +284,9 @@
   	${MKDIR} ../source/src/org/xml/sax/helpers
   	${CP}  ../src/org/xml/sax/helpers/*.java			../source/src/org/xml/sax/helpers
   
  -#-src/org/xml/sax/misc
  -	${MKDIR} ../source/src/org/xml/sax/misc
  -	${CP}  ../src/org/xml/sax/misc/*.java			../source/src/org/xml/sax/misc
  +#-src/org/xml/sax/ext
  +	${MKDIR} ../source/src/org/xml/sax/ext
  +	${CP}  ../src/org/xml/sax/ext/*.java			../source/src/org/xml/sax/ext
   
   ###################################
   #copy the .java and .dtd files unser samples
  @@ -384,8 +384,8 @@
   #-src/org/xml/sax/helpers
   	${CP}  ../src/org/xml/sax/helpers/Makefile			../source/src/org/xml/sax/helpers
   
  -#-src/org/xml/sax/misc
  -	${CP}  ../src/org/xml/sax/misc/Makefile			../source/src/org/xml/sax/misc
  +#-src/org/xml/sax/ext
  +	${CP}  ../src/org/xml/sax/ext/Makefile			../source/src/org/xml/sax/ext
   
   ###
   #copy the Makefiles and the batch files at higher levels
  
  
  
  1.2       +7 -3      xml-xerces/java/src/org/xml/sax/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/xml/sax/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	1999/11/09 01:11:17	1.1
  +++ Makefile	2000/02/07 21:49:25	1.2
  @@ -11,8 +11,10 @@
   # include the absolute path of the base source directory.
   
   TARGETS=\
  +	Attributes.class\
   	AttributeList.class\
   	Configurable.class\
  +	ContentHandler.class\
   	DocumentHandler.class\
   	DTDHandler.class\
   	EntityResolver.class\
  @@ -24,13 +26,15 @@
   	SAXException.class\
   	SAXNotRecognizedException.class\
   	SAXNotSupportedException.class\
  -	SAXParseException.class
  +	SAXParseException.class\
  +	XMLFilter.class\
  +	XMLReader.class
   
   all: dirs compile
   
   dirs:
   	${MAKE} -C helpers
  -	${MAKE} -C misc
  +	${MAKE} -C ext
   
   compile: ${TARGETS}
   
  @@ -46,5 +50,5 @@
   clean:
   	${RM} *.class
   	${MAKE} -C helpers clean
  -	${MAKE} -C misc clean
  +	${MAKE} -C ext clean
   
  
  
  
  1.1                  xml-xerces/java/src/org/xml/sax/ext/Makefile
  
  Index: Makefile
  ===================================================================
  include ../../../../../src/Makefile.incl
  # Makefile for directory ./org/xml/sax/misc
  #
  # This makefile depends on the following environment variables
  # already being defined:
  #
  #   JAVAC   Java compiler (with options)
  #   RM      Host delete file command (with options)
  #
  # In addition, the CLASSPATH environment variable must
  # include the absolute path of the base source directory.
  
  TARGETS=\
  	DeclHandler.class\
  	LexicalHandler.class
  
  all: dirs compile
  
  dirs:
  
  compile: ${TARGETS}
  
  .SUFFIXES:
  
  .SUFFIXES: .class .java
  
  .java.class:
  	${JAVAC} $<
  
  	touch ../../../../../src/classfiles_updated
  
  clean:
  	${RM} *.class
  
  
  
  
  1.2       +7 -2      xml-xerces/java/src/org/xml/sax/helpers/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/xml/sax/helpers/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Makefile	1999/11/09 01:11:20	1.1
  +++ Makefile	2000/02/07 21:49:27	1.2
  @@ -11,10 +11,15 @@
   # include the absolute path of the base source directory.
   
   TARGETS=\
  +	AttributesImpl.class\
   	AttributeListImpl.class\
  -	ConfigurableParserAdapter.class\
  +	DefaultHandler.class\
   	LocatorImpl.class\
  -	ParserFactory.class
  +	NamespaceSupport.class\
  +	ParserAdapter.class\
  +	ParserFactory.class\
  +	XMLFilterImpl.class\
  +	XMLReaderAdapter.class
   
   all: dirs compile