Update of /cvsroot/kuml/kuml/libkuml/uml
In directory usw-pr-cvs1:/tmp/cvs-serv24099
Modified Files:
start_fcd Makefile CHANGES.txt
Log Message:
Mods for change to UML 1.4.
Index: start_fcd
===================================================================
RCS file: /cvsroot/kuml/kuml/libkuml/uml/start_fcd,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** start_fcd 16 Oct 2000 04:01:59 -0000 1.1.1.1
--- start_fcd 27 Feb 2002 22:35:24 -0000 1.2
***************
*** 13,20 ****
IDL:omg.org/CosNaming/NamingContext:1.0#NameService $RC
! imr create UmlCorePackageFactory poa "`pwd`/fcd $RC" \
! IDL:UmlCorePackageFactory:1.0 $RC
sleep 1
! imr activate UmlCorePackageFactory $RC
#echo $RC
--- 13,20 ----
IDL:omg.org/CosNaming/NamingContext:1.0#NameService $RC
! imr create UMLPackageFactory poa "`pwd`/fcd $RC" \
! IDL:UMLPackageFactory:1.0 $RC
sleep 1
! imr activate UMLPackageFactory $RC
#echo $RC
Index: Makefile
===================================================================
RCS file: /cvsroot/kuml/kuml/libkuml/uml/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** Makefile 16 Oct 2000 04:01:59 -0000 1.1.1.1
--- Makefile 27 Feb 2002 22:35:24 -0000 1.2
***************
*** 1,17 ****
- MICO_VERSION=2.3.0
-
.PHONY: all clean
all: fcd
! fcd: Reflective/*.h Foundation/*.h main/*.cc Reflective/*.cc Foundation/*.cc
! ( cd Reflective; make all )
! ( cd Foundation; make all )
! ( cd main; make all )
! mico-ld -o fcd main/*.o Reflective/*.o Foundation/*.o \
! -lmico${MICO_VERSION} -lmicocoss${MICO_VERSION}
clean:
! ( cd Foundation; make clean )
( cd Reflective; make clean )
( cd main; make clean )
--- 1,19 ----
.PHONY: all clean
+ PACKAGES=ActivityGraphs Collaborations CommonBehavior Core DataTypes main ModelManagement Reflective StateMachines UML UseCases
+
all: fcd
! fcd: Reflective/*.h Core/*.h main/*.cc Reflective/*.cc Core/*.cc
! ( for PACKAGE in ${PACKAGES}; do \
! cd $${PACKAGE}; make all; cd ..; \
! done )
! mico-ld -o fcd ActivityGraphs/*.o Collaborations/*.o \
! CommonBehavior/*.o Core/*.o DataTypes/*.o main/*.o \
! ModelManagement/*.o Reflective/*.o StateMachines/*.o UML/*.o \
! UseCases/*.o -lmico${MICOVERSION} -lmicocoss${MICOVERSION}
clean:
! ( cd Core; make clean )
( cd Reflective; make clean )
( cd main; make clean )
Index: CHANGES.txt
===================================================================
RCS file: /cvsroot/kuml/kuml/libkuml/uml/CHANGES.txt,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** CHANGES.txt 20 Dec 2000 20:37:16 -0000 1.2
--- CHANGES.txt 27 Feb 2002 22:35:24 -0000 1.3
***************
*** 1,2 ****
--- 1,3 ----
+ 0.6 XSLT based generation from XMI.
0.5 Auto-generation. Associations partially implemented and wrong?
0.4 Added attributes and a host of other features. Base for kUML.
|