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/01 05:27:06 UTC

cvs commit: xml-xerces/java Makefile

andyc       00/01/31 20:27:06

  Modified:    java     Makefile
  Log:
  1) JAR files contained META-INF directory. Removed.
  2) JAR files missing license information. Added.
  3) docs/ directory contains CVS directory. Removed.
  4) XML docs in binary distribution. Moved to source distribution.
  
  Revision  Changes    Path
  1.5       +10 -3     xml-xerces/java/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/Makefile,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Makefile	2000/01/07 01:58:18	1.4
  +++ Makefile	2000/02/01 04:27:06	1.5
  @@ -31,23 +31,30 @@
   package_bin: jars apidocs ${BINZIPFILE}
   ${BINZIPFILE}: ./src/classfiles_updated
   
  -	echo Building a jar file.
  +	echo Building a jar file for binary release.
   	${MKDIR} bin
   	${CP} -r docs bin
  +	${RM} -r bin/docs/CVS
  +	${RM} -r bin/docs/*.xml bin/docs/*.ent
   	${CP} -r data bin
   	${RM} -r bin/data/CVS
  +	${CP} ../LICENSE bin
   	mv bin xerces-${PRODUCTVERSION}
  -	jar cvf ${BINJARFILE} xerces-${PRODUCTVERSION} 
  +	jar cvfM ${BINJARFILE} xerces-${PRODUCTVERSION} 
   	mv xerces-${PRODUCTVERSION} bin
   
   package_src: ./source/src/Makefile
   ./source/src/Makefile: ./src/classfiles_updated
   
  +	echo Building a jar file for source release.
   	${MAKE} -C src package_src
   	${CP} -r data source
   	${RM} -r source/data/CVS
  +	${MKDIR} source/docs
  +	${CP} docs/*.xml docs/*.ent source/docs
  +	${CP} ../LICENSE source
   	mv source xerces-${PRODUCTVERSION}
  -	jar cvf ${SRCJARFILE} xerces-${PRODUCTVERSION} 
  +	jar cvfM ${SRCJARFILE} xerces-${PRODUCTVERSION} 
   	mv xerces-${PRODUCTVERSION} source
   
   clean: