From: Chris M. <zm...@us...> - 2002-03-06 22:31:04
|
Update of /cvsroot/kuml/kuml/libkuml/uml In directory usw-pr-cvs1:/tmp/cvs-serv2502 Modified Files: codegen.mf Log Message: Remove all target as I never used it. Added the missing targets. Played with a newer version of Xalan. Index: codegen.mf =================================================================== RCS file: /cvsroot/kuml/kuml/libkuml/uml/codegen.mf,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** codegen.mf 7 Aug 2001 22:39:13 -0000 1.2 --- codegen.mf 6 Mar 2002 22:30:57 -0000 1.3 *************** *** 1,3 **** --- 1,4 ---- CLASSPATH='/opt/xalan-j_2_0_1/bin/xalan.jar:/opt/xalan-j_2_0_1/bin/xerces.jar' + #CLASSPATH='/opt/xalan-j_2_2_D6/bin/xalan.jar:/opt/xalan-j_2_2_D6/bin/xerces.jar' JAVACOMM=java -Xmx150000000 -classpath $(CLASSPATH) XALANCOMM=$(JAVACOMM) org.apache.xalan.xslt.Process *************** *** 5,10 **** XSL_DIR=tools - all: class_hs class_ccs assoc_hs proxy_hs - class_hs: $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_class_hs.xsl --- 6,9 ---- *************** *** 16,19 **** --- 15,21 ---- $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_assoc_hs.xsl + assoc_ccs: + $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_assoc_ccs.xsl + proxy_hs: $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_proxy_hs.xsl *************** *** 21,24 **** --- 23,38 ---- proxy_ccs: $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_proxy_ccs.xsl + + factory_hs: + $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_factory_hs.xsl + + factory_ccs: + $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_factory_ccs.xsl + + package_hs: + $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_package_hs.xsl + + package_ccs: + $(XALANCOMM) -IN $(MOF_MODEL_OF_UML) -XSL $(XSL_DIR)/gen_package_ccs.xsl clean: |