You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by le...@locus.apache.org on 2000/01/11 22:42:19 UTC

cvs commit: xml-xerces/java/src/org/w3c/dom Makefile

lehors      00/01/11 13:42:19

  Modified:    java/src Makefile
               java/src/org/w3c Makefile
               java/src/org/w3c/dom Makefile
  Added:       java/src/org/w3c/dom/events Makefile
               java/src/org/w3c/dom/traversal Makefile
  Log:
  fixed Makefiles regarding domx change, patch from Timm Sean, STimm@mailgo.com
  
  Revision  Changes    Path
  1.1                  xml-xerces/java/src/org/w3c/dom/events/Makefile
  
  Index: Makefile
  ===================================================================
  include ../../../../../src/Makefile.incl
  # Makefile for directory ./org/w3c/dom/events
  #
  # 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=\
       DocumentEvent.class\
       Event.class\
       EventException.class\
       EventListener.class\
       EventTarget.class\
       MutationEvent.class
  
  
  all: dirs compile
  
  dirs:
  
  compile: ${TARGETS}
  
  .SUFFIXES:
  
  .SUFFIXES: .class .java
  
  .java.class:
  	${JAVAC} $<
  	touch ../../../../../src/classfiles_updated
  
  clean:
  	${RM} *.class
  
  
  
  1.1                  xml-xerces/java/src/org/w3c/dom/traversal/Makefile
  
  Index: Makefile
  ===================================================================
  include ../../../../../src/Makefile.incl
  # Makefile for directory ./org/w3c/dom/traversal
  #
  # 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=\
       DocumentTraversal.class\
       NodeFilter.class\
       NodeIterator.class\
       TreeWalker.class
  
  
  all: dirs compile
  
  dirs:
  
  compile: ${TARGETS}
  
  .SUFFIXES:
  
  .SUFFIXES: .class .java
  
  .java.class:
  	${JAVAC} $<
  	touch ../../../../../src/classfiles_updated
  
  clean:
  	${RM} *.class
  
  
  
  1.7       +29 -15    xml-xerces/java/src/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/Makefile,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- Makefile	2000/01/07 19:23:44	1.6
  +++ Makefile	2000/01/11 21:42:18	1.7
  @@ -121,10 +121,18 @@
   	${MKDIR} ../class/org/w3c/dom	
   	${CP}  ../src/org/w3c/dom/*.class				../class/org/w3c/dom
   
  +#-src/org/w3c/dom/events
  +	${MKDIR} ../class/org/w3c/dom/events	
  +	${CP}  ../src/org/w3c/dom/events/*.class			../class/org/w3c/dom/events
  +
   #-src/org/w3c/dom/html
   	${MKDIR} ../class/org/w3c/dom/html	
   	${CP}  ../src/org/w3c/dom/html/*.class				../class/org/w3c/dom/html
   
  +#-src/org/w3c/dom/traversal
  +	${MKDIR} ../class/org/w3c/dom/traversal	
  +	${CP}  ../src/org/w3c/dom/traversal/*.class			../class/org/w3c/dom/traversal
  +
   #-src/org/xml/sax
   	${MKDIR} ../class/org/xml/sax
   	${CP}  ../src/org/xml/sax/*.class				../class/org/xml/sax
  @@ -204,15 +212,6 @@
   	${MKDIR} ../source/src/org/apache/xerces/domx
   	${CP}  ../src/org/apache/xerces/domx/*.java  		../source/src/org/apache/xerces/domx
   
  -#-src/org/apache/xerces/domx/traversal
  -	${MKDIR} ../source/src/org/apache/xerces/domx/traversal
  -	${CP}  ../src/org/apache/xerces/domx/traversal/*.java  		../source/src/org/apache/xerces/domx/traversal
  -
  -#-src/org/apache/xerces/domx/events
  -	${MKDIR} ../source/src/org/apache/xerces/domx/events
  -	${CP}  ../src/org/apache/xerces/domx/events/*.java  		../source/src/org/apache/xerces/domx/events
  -
  -
   #-src/org/apache/xerces/framework
   	${MKDIR} ../source/src/org/apache/xerces/framework
   	${CP}  ../src/org/apache/xerces/framework/*.java		../source/src/org/apache/xerces/framework
  @@ -269,6 +268,18 @@
   	${MKDIR} ../source/src/org/w3c/dom	
   	${CP}  ../src/org/w3c/dom/*.java				../source/src/org/w3c/dom
   
  +#-src/org/w3c/dom/events
  +	${MKDIR} ../source/src/org/w3c/dom/events	
  +	${CP}  ../src/org/w3c/dom/events/*.java				../source/src/org/w3c/dom/events
  +
  +#-src/org/w3c/dom/html
  +	${MKDIR} ../source/src/org/w3c/dom/html	
  +	${CP}  ../src/org/w3c/dom/html/*.java				../source/src/org/w3c/dom/html
  +
  +#-src/org/w3c/dom/traversal
  +	${MKDIR} ../source/src/org/w3c/dom/traversal	
  +	${CP}  ../src/org/w3c/dom/traversal/*.java			../source/src/org/w3c/dom/traversal
  +
   #-src/org/xml/sax
   	${MKDIR} ../source/src/org/xml/sax
   	${CP}  ../src/org/xml/sax/*.java				../source/src/org/xml/sax
  @@ -326,12 +337,6 @@
   #-src/org/apache/xerces/dom/events
   	${CP}  ../src/org/apache/xerces/dom/events/Makefile  		../source/src/org/apache/xerces/dom/events
   
  -#-src/org/apache/xerces/domx/traversal
  -	${CP}  ../src/org/apache/xerces/domx/traversal/Makefile  		../source/src/org/apache/xerces/domx/traversal
  -
  -#-src/org/apache/xerces/domx/events
  -	${CP}  ../src/org/apache/xerces/domx/events/Makefile  		../source/src/org/apache/xerces/domx/events
  -
   #-src/org/apache/xerces/framework
   	${CP}  ../src/org/apache/xerces/framework/Makefile		../source/src/org/apache/xerces/framework
   
  @@ -368,6 +373,15 @@
   
   #-src/org/w3c/dom
   	${CP}  ../src/org/w3c/dom/Makefile				../source/src/org/w3c/dom
  +
  +#-src/org/w3c/dom/events
  +	${CP}  ../src/org/w3c/dom/events/Makefile			../source/src/org/w3c/dom/events
  +
  +#-src/org/w3c/dom/html
  +	${CP}  ../src/org/w3c/dom/html/Makefile				../source/src/org/w3c/dom/html
  +
  +#-src/org/w3c/dom/traversal
  +	${CP}  ../src/org/w3c/dom/traversal/Makefile			../source/src/org/w3c/dom/traversal
   
   #-src/org/xml/sax
   	${CP}  ../src/org/xml/sax/Makefile				../source/src/org/xml/sax
  
  
  
  1.3       +0 -3      xml-xerces/java/src/org/w3c/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	1999/12/14 21:24:48	1.2
  +++ Makefile	2000/01/11 21:42:18	1.3
  @@ -16,7 +16,6 @@
   
   dirs:
   	${MAKE} -C dom
  -	${MAKE} -C dom/html
   
   compile: ${TARGETS}
   
  @@ -31,6 +30,4 @@
   
   clean:
   	${MAKE} -C dom clean
  -	${MAKE} -C dom/html clean
  -
   
  
  
  
  1.3       +7 -0      xml-xerces/java/src/org/w3c/dom/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/01/06 22:00:09	1.2
  +++ Makefile	2000/01/11 21:42:18	1.3
  @@ -32,6 +32,9 @@
   all: dirs compile
   
   dirs:
  +	${MAKE} -C events
  +	${MAKE} -C html
  +	${MAKE} -C traversal
   
   compile: ${TARGETS}
   
  @@ -41,7 +44,11 @@
   
   .java.class:
   	${JAVAC} $<
  +	touch ../../../../src/classfiles_updated
   
   clean:
   	${RM} *.class
  +	${MAKE} -C events clean
  +	${MAKE} -C html clean
  +	${MAKE} -C traversal clean