[prev in list] [next in list] [prev in thread] [next in thread] 

List:       xerces-cvs
Subject:    cvs commit: xml-xerces/java/src/org/xml/sax Makefile
From:       lehors () locus ! apache ! org
Date:       2000-02-29 1:10:17
[Download RAW message or body]

lehors      00/02/28 17:10:17

  Modified:    java     Makefile
               java/src Makefile.incl Makefile
               java/samples/dom Makefile
               java/samples/dom/traversal Makefile
               java/samples/dom/wrappers Makefile
               java/samples Makefile
               java/samples/sax/helpers Makefile
               java/samples/sax Makefile
               java/samples/ui Makefile
               java/src/org/apache/html/dom Makefile
               java/src/org/apache/html Makefile
               java/src/org/apache Makefile
               java/src/org/apache/xerces/dom/events Makefile
               java/src/org/apache/xerces/dom Makefile
               java/src/org/apache/xerces/domx Makefile
               java/src/org/apache/xerces/framework Makefile
               java/src/org/apache/xerces Makefile
               java/src/org/apache/xerces/msg Makefile
               java/src/org/apache/xerces/parsers Makefile
               java/src/org/apache/xerces/readers Makefile
               java/src/org/apache/xerces/utils Makefile
               java/src/org/apache/xerces/validators/datatype Makefile
               java/src/org/apache/xerces/validators/dtd Makefile
               java/src/org/apache/xerces/validators Makefile
               java/src/org/apache/xerces/validators/schema Makefile
               java/src/org/apache/xml Makefile
               java/src/org/apache/xml/serialize Makefile
               java/src/org Makefile
               java/src/org/w3c/dom/events Makefile
               java/src/org/w3c/dom/html Makefile
               java/src/org/w3c/dom Makefile
               java/src/org/w3c/dom/range Makefile
               java/src/org/w3c/dom/traversal Makefile
               java/src/org/w3c Makefile
               java/src/org/xml Makefile
               java/src/org/xml/sax/ext Makefile
               java/src/org/xml/sax/helpers Makefile
               java/src/org/xml/sax Makefile
  Log:
  moved common rules into src/Makefile.incl and made all makefiles
  much simpler
  
  Revision  Changes    Path
  1.16      +5 -3      xml-xerces/java/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/Makefile,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- Makefile	2000/02/22 19:38:06	1.15
  +++ Makefile	2000/02/29 01:10:00	1.16
  @@ -1,9 +1,11 @@
  +# Top Makefile
  +
   TOP = .
   include $(TOP)/src/Makefile.incl
   
  -all: compile jars docs apidocs package
  +all:: compile jars docs apidocs package
   
  -compile: compile_src compile_samples
  +compile:: compile_src compile_samples
   package: package_bin package_src 
   
   compile_src:
  @@ -60,7 +62,7 @@
   	$(JAR) cvfM ${SRCZIPFILE} xerces-${PRODUCTVERSION} 
   	$(MV) xerces-${PRODUCTVERSION} source
   
  -clean:
  +clean::
   	${MAKE} -C src clean
   	${MAKE} -C samples clean
   	${RM} -rf bin class source docs/apiDocs docs/html
  
  
  
  1.19      +36 -12    xml-xerces/java/src/Makefile.incl
  
  Index: Makefile.incl
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/Makefile.incl,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- Makefile.incl	2000/02/22 19:38:07	1.18
  +++ Makefile.incl	2000/02/29 01:10:01	1.19
  @@ -2,7 +2,6 @@
   ifneq ($(findstring WIN,$(shell uname)),)
   # DOS
   CLPATHSEP := ;
  -MAKE = make --unix
   else 
   # UNIX
   CLPATHSEP := :
  @@ -15,25 +14,22 @@
   CLPATH = $(XERCES_CLASSPATH)$(CLPATHSEP)$(CLASSPATH)
   
   STYLEBOOK_CLPATH = \
$(XERCES_CLASSPATH)$(CLPATHSEP)$(TOP)/tools/stylebook-1.0-b2.jar$(CLPATHSEP)$(TOP)/tools/xalan-0.19.2.jar$(CLPATHSEP)$(TOP)/tools/xerces-1.0.1.jar
  +
   SB_CLPATH = $(STYLEBOOK_CLPATH)$(CLPATHSEP)$(CLASSPATH)
   
   JAR = jar
  -JAVAC = javac -classpath "$(CLPATH)"
  -JAVA = java -classpath "$(CLPATH)"
  -JAVADOC = javadoc -classpath "$(CLPATH)"
  -
  +JAVAC = javac
   ifeq ($(JDK12BIN),)
  -JAVA12 = java -classpath "$(CLPATH)"
  -JAVADOC12 = javadoc -classpath "$(CLPATH)"
  -STYLEBOOK = java -classpath "$(SB_CLPATH)" org.apache.stylebook.StyleBook
  +JAVA12 = java
  +JAVADOC12 = javadoc
   else
  -JAVA12 = $(JDK12BIN)/java -classpath "$(CLPATH)"
  -JAVADOC12 = $(JDK12BIN)/javadoc -classpath "$(CLPATH)"
  -STYLEBOOK = $(JDK12BIN)/java -classpath "$(SB_CLPATH)" \
org.apache.stylebook.StyleBook  +JAVA12 = $(JDK12BIN)/java
  +JAVADOC12 = $(JDK12BIN)/javadoc
   endif
  +STYLEBOOK = $(JAVA12) -classpath "$(SB_CLPATH)" org.apache.stylebook.StyleBook
   
   MKDIR = mkdir -p 
  -RM = -rm 
  +RM = -rm -f
   CP = cp
   MV = mv
   
  @@ -74,3 +70,31 @@
   
   BINJARFILE = ${PRODUCTNAME}-J-bin.${PRODUCTVERSION_DOT}.jar
   SRCJARFILE = ${PRODUCTNAME}-J-src.${PRODUCTVERSION_DOT}.jar
  +
  +# Common rules
  +
  +.SUFFIXES: .class .java
  +
  +.java.class:
  +	${JAVAC} -classpath "$(CLPATH)" $<
  +
  +all:: dirs compile 
  +
  +compile:: ${TARGETS}
  +
  +clean:: cleandirs
  +	@$(RM) *.class
  +
  +dirs::
  +	@if [ -n "$(DIRS)" ]; \
  +	then for i in $(DIRS);do \
  +		echo "$(MAKE) -C $$i"; $(MAKE) -C $$i; \
  +	     done; \
  +	fi
  +
  +cleandirs::
  +	@if [ -n "$(DIRS)" ]; \
  +	then for i in $(DIRS);do \
  +		echo "$(MAKE) -C $$i clean"; $(MAKE) -C $$i clean; \
  +	     done; \
  +	fi
  
  
  
  1.18      +6 -29     xml-xerces/java/src/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/Makefile,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- Makefile	2000/02/22 19:38:07	1.17
  +++ Makefile	2000/02/29 01:10:01	1.18
  @@ -1,39 +1,16 @@
  -TOP = ..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory .
  -#
  -# 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=
  -
  -all: dirs compile 
  -
  -dirs:
  -	${MAKE} -C org
   
  -compile: ${TARGETS}
  +TARGETS =
  +DIRS = org
   
  -.SUFFIXES:
  -
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -
  -clean:
  -	${MAKE} -C org clean
  +TOP = ..
  +include $(TOP)/src/Makefile.incl
   
   apidocs: ../docs/apiDocs/index.html
   ../docs/apiDocs/index.html: classfiles_updated
   
  -	$(JAVADOC12) -windowtitle "Xerces ${PRODUCTVERSION_DOT} API" \
  +	$(JAVADOC12) -classpath "$(CLPATH)" \
  +		-windowtitle "Xerces ${PRODUCTVERSION_DOT} API" \
   		-splitindex -header "Xerces ${PRODUCTVERSION_DOT}" \
   		-version  \
   		-d ../docs/apiDocs ${PACKAGES}
  
  
  
  1.3       +3 -32     xml-xerces/java/samples/dom/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/dom/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:32:58	1.2
  +++ Makefile	2000/02/29 01:10:01	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./dom
  -#
  -# 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=\
   	DOMAddLines.class\
  @@ -17,26 +6,8 @@
   	DOMFilter.class\
   	DOMParserWrapper.class\
   	DOMWriter.class
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C traversal
  -	${MAKE} -C wrappers
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = traversal wrappers
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -	${MAKE} -C traversal clean
  -	${MAKE} -C wrappers clean
  -
  +TOP = ../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/samples/dom/traversal/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/dom/traversal/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:32:59	1.2
  +++ Makefile	2000/02/29 01:10:02	1.3
  @@ -1,36 +1,11 @@
  -TOP = ../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./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=\
   	IteratorView.class\
   	NameNodeFilter.class\
   	TreeWalkerView.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/samples/dom/wrappers/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/dom/wrappers/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:32:59	1.2
  +++ Makefile	2000/02/29 01:10:02	1.3
  @@ -1,35 +1,10 @@
  -TOP = ../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./dom/wrappers
  -#
  -# 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=\
   	DOMParser.class\
   	NonValidatingDOMParser.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -33     xml-xerces/java/samples/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:32:59	1.2
  +++ Makefile	2000/02/29 01:10:02	1.3
  @@ -1,38 +1,8 @@
  -TOP = ..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory .
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C dom
  -	${MAKE} -C sax
  -	${MAKE} -C ui
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = dom sax ui
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch .././src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C dom clean
  -	${MAKE} -C sax clean
  -	${MAKE} -C ui clean
  -
  +TOP = ..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.4       +3 -28     xml-xerces/java/samples/sax/helpers/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/sax/helpers/Makefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile	2000/02/14 22:20:01	1.3
  +++ Makefile	2000/02/29 01:10:03	1.4
  @@ -1,35 +1,10 @@
  -TOP = ../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./sax/helpers
  -#
  -# 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=\
   	AttributesImpl.class\
   	AttributeListImpl.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.5       +3 -30     xml-xerces/java/samples/sax/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/sax/Makefile,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile	2000/02/14 22:05:56	1.4
  +++ Makefile	2000/02/29 01:10:04	1.5
  @@ -1,39 +1,12 @@
  -TOP = ../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./sax
  -#
  -# 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=\
   	SAXCount.class\
   	SAX2Count.class\
   	SAXWriter.class\
   	SAX2Writer.class
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C helpers
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = helpers
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -	${MAKE} -C helpers clean
  -
  +TOP = ../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/samples/ui/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/samples/ui/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:01	1.2
  +++ Makefile	2000/02/29 01:10:04	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./ui
  -#
  -# 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=\
   	DefaultImages.class\
  @@ -18,22 +7,8 @@
   	DOMTreeFull.class\
   	TreeView.class\
   	TreeViewer.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/apache/html/dom/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/html/dom/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:01	1.2
  +++ Makefile	2000/02/29 01:10:04	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/html/dom
  -#
  -# 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=\
   	HTMLAnchorElementImpl.class\
  @@ -71,22 +60,8 @@
   	HTMLTitleElementImpl.class\
   	HTMLUListElementImpl.class\
   	NameNodeListImpl.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -29     xml-xerces/java/src/org/apache/html/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/html/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:02	1.2
  +++ Makefile	2000/02/29 01:10:05	1.3
  @@ -1,34 +1,8 @@
  -TOP = ../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/html
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C dom
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = dom
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C dom clean
  -
  +TOP = ../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.5       +4 -34     xml-xerces/java/src/org/apache/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/Makefile,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile	2000/02/14 18:33:03	1.4
  +++ Makefile	2000/02/29 01:10:05	1.5
  @@ -1,38 +1,8 @@
  -TOP = ../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C xerces
  -	${MAKE} -C xml
  -	${MAKE} -C html
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +TARGETS =
   
  -.SUFFIXES: .class .java
  +DIRS = xerces xml html
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C xerces clean
  -	${MAKE} -C xml clean
  -	${MAKE} -C html clean
  -
  +TOP = ../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/apache/xerces/dom/events/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/events/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:04	1.2
  +++ Makefile	2000/02/29 01:10:05	1.3
  @@ -1,35 +1,10 @@
  -TOP = ../../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/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=\
   	EventImpl.class\
   	MutationEventImpl.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS =
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.8       +3 -30     xml-xerces/java/src/org/apache/xerces/dom/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/dom/Makefile,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- Makefile	2000/02/14 18:33:04	1.7
  +++ Makefile	2000/02/29 01:10:06	1.8
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/dom
  -#
  -# 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=\
   	AttrImpl.class\
  @@ -54,24 +43,8 @@
   	RangeImpl.class\
   	TextImpl.class\
   	TreeWalkerImpl.class
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C events
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = events
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -	${MAKE} -C events clean
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.4       +3 -28     xml-xerces/java/src/org/apache/xerces/domx/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/domx/Makefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile	2000/02/14 18:33:05	1.3
  +++ Makefile	2000/02/29 01:10:06	1.4
  @@ -1,35 +1,10 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/domx
  -#
  -# 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=\
   	DOMException.class\
   	XGrammarWriter.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS =
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/apache/xerces/framework/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/framework/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:06	1.2
  +++ Makefile	2000/02/29 01:10:06	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/framework
  -#
  -# 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=\
   	Version.class\
  @@ -20,22 +9,8 @@
   	XMLErrorReporter.class\
   	XMLParser.class\
   	XMLValidator.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS =
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +4 -44     xml-xerces/java/src/org/apache/xerces/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:06	1.2
  +++ Makefile	2000/02/29 01:10:07	1.3
  @@ -1,48 +1,8 @@
  -TOP = ../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C dom
  -	${MAKE} -C domx
  -	${MAKE} -C framework
  -	${MAKE} -C msg
  -	${MAKE} -C parsers
  -	${MAKE} -C readers
  -	${MAKE} -C utils
  -	${MAKE} -C validators
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +TARGETS =
   
  -.SUFFIXES: .class .java
  +DIRS =  dom domx framework msg parsers readers utils validators
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C dom clean
  -	${MAKE} -C domx clean
  -	${MAKE} -C framework clean
  -	${MAKE} -C msg clean
  -	${MAKE} -C parsers clean
  -	${MAKE} -C readers clean
  -	${MAKE} -C utils clean
  -	${MAKE} -C validators clean
  -
  +TOP = ../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.6       +3 -27     xml-xerces/java/src/org/apache/xerces/msg/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/msg/Makefile,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Makefile	2000/02/14 18:33:08	1.5
  +++ Makefile	2000/02/29 01:10:07	1.6
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/msg
  -#
  -# 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=\
   	DatatypeMessages.class\
  @@ -17,22 +6,9 @@
   	SchemaMessages.class\
   	XMLMessages.class\
   	ImplementationMessages.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +DIRS =
   
  -.SUFFIXES: .class .java
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.6       +3 -26     xml-xerces/java/src/org/apache/xerces/parsers/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/parsers/Makefile,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Makefile	2000/02/14 18:33:08	1.5
  +++ Makefile	2000/02/29 01:10:07	1.6
  @@ -1,33 +1,10 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/parsers
  -#
  -# 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=\
   	DOMParser.class\
   	SAXParser.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +DIRS =
   
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.4       +3 -28     xml-xerces/java/src/org/apache/xerces/readers/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/readers/Makefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile	2000/02/14 18:33:09	1.3
  +++ Makefile	2000/02/29 01:10:08	1.4
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/readers
  -#
  -# 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=\
   	AbstractCharReader.class\
  @@ -30,22 +19,8 @@
   	XMLEntityHandler.class\
   	XMLEntityReader.class\
   	XMLEntityReaderFactory.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/apache/xerces/utils/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/utils/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:10	1.2
  +++ Makefile	2000/02/29 01:10:08	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/utils
  -#
  -# 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=\
   	CharDataChunk.class\
  @@ -24,22 +13,8 @@
   	XMLCharacterProperties.class\
   	XMLMessageProvider.class\
   	XMLMessages.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS =
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.4       +3 -28     \
xml-xerces/java/src/org/apache/xerces/validators/datatype/Makefile  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/datatype/Makefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile	2000/02/14 18:33:10	1.3
  +++ Makefile	2000/02/29 01:10:09	1.4
  @@ -1,15 +1,4 @@
  -TOP = ../../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/validators/datatype
  -#
  -# 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=\
   	BooleanValidator.class\
  @@ -26,22 +15,8 @@
           TimeDurationValidator.java \
           TimeInstantValidator.java \
   	UnknownFacetException.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/apache/xerces/validators/dtd/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/dtd/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:11	1.2
  +++ Makefile	2000/02/29 01:10:09	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/validators/dtd
  -#
  -# 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=\
   	CMBinOp.class\
  @@ -26,22 +15,8 @@
   	MixedContentModel.class\
   	SimpleContentModel.class\
   	XMLContentModel.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -33     xml-xerces/java/src/org/apache/xerces/validators/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:12	1.2
  +++ Makefile	2000/02/29 01:10:10	1.3
  @@ -1,38 +1,8 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/validators
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C datatype
  -	${MAKE} -C dtd
  -	${MAKE} -C schema
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = datatype dtd schema
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C datatype clean
  -	${MAKE} -C dtd clean
  -	${MAKE} -C schema clean
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     \
xml-xerces/java/src/org/apache/xerces/validators/schema/Makefile  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/validators/schema/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:12	1.2
  +++ Makefile	2000/02/29 01:10:10	1.3
  @@ -1,37 +1,12 @@
  -TOP = ../../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xerces/validators/schema
  -#
  -# 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=\
   	DatatypeContentModel.class\
   	SchemaMessageProvider.class\
   	XSchemaValidator.class\
   	XUtil.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = 
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/apache/xml/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xml/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:14	1.2
  +++ Makefile	2000/02/29 01:10:11	1.3
  @@ -1,34 +1,9 @@
  -TOP = ../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xml
  -#
  -# 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=
   
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C serialize
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = serialize
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C serialize clean
  -
  +TOP = ../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.4       +3 -29     xml-xerces/java/src/org/apache/xml/serialize/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xml/serialize/Makefile,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile	2000/02/14 18:33:15	1.3
  +++ Makefile	2000/02/29 01:10:11	1.4
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/apache/xml/serialize
  -#
  -# 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=\
   	OutputFormat.class\
  @@ -26,23 +15,8 @@
   	HTMLdtd.class\
   	SerializerFactory.class\
   	SerializerFactoryImpl.class
  -
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +DIRS =
   
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +4 -34     xml-xerces/java/src/org/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:17	1.2
  +++ Makefile	2000/02/29 01:10:11	1.3
  @@ -1,38 +1,8 @@
  -TOP = ../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C apache
  -	${MAKE} -C w3c
  -	${MAKE} -C xml
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +TARGETS =
   
  -.SUFFIXES: .class .java
  +DIRS = apache w3c xml
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C apache clean
  -	${MAKE} -C w3c clean
  -	${MAKE} -C xml clean
  -
  +TOP = ../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -27     xml-xerces/java/src/org/w3c/dom/events/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/events/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:18	1.2
  +++ Makefile	2000/02/29 01:10:13	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/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\
  @@ -18,21 +7,8 @@
        EventListener.class\
        EventTarget.class\
        MutationEvent.class
  -
  -
  -all: dirs compile
  -
  -dirs:
   
  -compile: ${TARGETS}
  +DIRS= 
   
  -.SUFFIXES:
  -
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -29     xml-xerces/java/src/org/w3c/dom/html/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/html/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:19	1.2
  +++ Makefile	2000/02/29 01:10:13	1.3
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/w3c/dom/html
  -#
  -# 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=\
   	HTMLAnchorElement.class\
  @@ -68,23 +57,8 @@
   	HTMLTextAreaElement.class\
   	HTMLTitleElement.class\
   	HTMLUListElement.class
  -
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +DIRS = 
   
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.6       +3 -35     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.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- Makefile	2000/02/14 18:33:19	1.5
  +++ Makefile	2000/02/29 01:10:14	1.6
  @@ -1,15 +1,4 @@
  -TOP = ../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/w3c/dom
  -#
  -# 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=\
   	Attr.class\
  @@ -30,29 +19,8 @@
   	Notation.class\
   	ProcessingInstruction.class\
   	Text.class
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C events
  -	${MAKE} -C html
  -	${MAKE} -C traversal
  -	${MAKE} -C range
  -
  -compile: ${TARGETS}
   
  -.SUFFIXES:
  +DIRS = events html traversal range
   
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -	touch ../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -	${MAKE} -C events clean
  -	${MAKE} -C html clean
  -	${MAKE} -C traversal clean
  -	${MAKE} -C range clean
  -
  +TOP = ../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -26     xml-xerces/java/src/org/w3c/dom/range/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/range/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:20	1.2
  +++ Makefile	2000/02/29 01:10:14	1.3
  @@ -1,35 +1,12 @@
  -TOP = ../../../../..
  -include $(TOP)/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=\
        DocumentRange.class\
        Range.class\
        RangeException.class
  -
  -
  -all: dirs compile
  -
  -dirs:
   
  -compile: ${TARGETS}
  +DIRS =
   
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -27     xml-xerces/java/src/org/w3c/dom/traversal/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/traversal/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:21	1.2
  +++ Makefile	2000/02/29 01:10:15	1.3
  @@ -1,36 +1,12 @@
  -TOP = ../../../../..
  -include $(TOP)/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}
  +DIRS = 
   
  -.SUFFIXES:
  -
  -.SUFFIXES: .class .java
  -
  -.java.class:
  -	${JAVAC} $<
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.5       +3 -29     xml-xerces/java/src/org/w3c/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/Makefile,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile	2000/02/14 18:33:21	1.4
  +++ Makefile	2000/02/29 01:10:15	1.5
  @@ -1,34 +1,8 @@
  -TOP = ../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/w3c
  -#
  -# 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=
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C dom
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = dom
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C dom clean
  -
  +TOP = ../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/xml/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/xml/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:22	1.2
  +++ Makefile	2000/02/29 01:10:15	1.3
  @@ -1,34 +1,9 @@
  -TOP = ../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/xml
  -#
  -# 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=
   
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C sax
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = sax
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../src/classfiles_updated
  -
  -clean:
  -	${MAKE} -C sax clean
  -
  +TOP = ../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.3       +3 -28     xml-xerces/java/src/org/xml/sax/ext/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/xml/sax/ext/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- Makefile	2000/02/14 18:33:23	1.2
  +++ Makefile	2000/02/29 01:10:16	1.3
  @@ -1,35 +1,10 @@
  -TOP = ../../../../..
  -include $(TOP)/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
  +DIRS =
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.4       +3 -28     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.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Makefile	2000/02/14 18:33:24	1.3
  +++ Makefile	2000/02/29 01:10:16	1.4
  @@ -1,15 +1,4 @@
  -TOP = ../../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/xml/sax/helpers
  -#
  -# 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=\
   	AttributesImpl.class\
  @@ -21,22 +10,8 @@
   	ParserFactory.class\
   	XMLFilterImpl.class\
   	XMLReaderAdapter.class
  -
  -all: dirs compile
  -
  -dirs:
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS =
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -
  +TOP = ../../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  
  1.5       +3 -32     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.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile	2000/02/14 18:33:27	1.4
  +++ Makefile	2000/02/29 01:10:16	1.5
  @@ -1,15 +1,4 @@
  -TOP = ../../../..
  -include $(TOP)/src/Makefile.incl
   # Makefile for directory ./org/xml/sax
  -#
  -# 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=\
   	Attributes.class\
  @@ -29,26 +18,8 @@
   	SAXParseException.class\
   	XMLFilter.class\
   	XMLReader.class
  -
  -all: dirs compile
  -
  -dirs:
  -	${MAKE} -C helpers
  -	${MAKE} -C ext
  -
  -compile: ${TARGETS}
  -
  -.SUFFIXES:
   
  -.SUFFIXES: .class .java
  +DIRS = helpers ext
   
  -.java.class:
  -	${JAVAC} $<
  -
  -	touch ../../../../src/classfiles_updated
  -
  -clean:
  -	${RM} *.class
  -	${MAKE} -C helpers clean
  -	${MAKE} -C ext clean
  -
  +TOP = ../../../..
  +include $(TOP)/src/Makefile.incl
  
  
  


[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic