From: Robert L. <rle...@us...> - 2007-02-21 16:05:31
|
Update of /cvsroot/ccmtools/ccmtools/test/CppAssembly/test1 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv3424/test/CppAssembly/test1 Modified Files: Makefile test1.idl Log Message: C++ assemblies Index: test1.idl =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/CppAssembly/test1/test1.idl,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** test1.idl 20 Feb 2007 15:37:55 -0000 1.1 --- test1.idl 21 Feb 2007 16:05:20 -0000 1.2 *************** *** 6,9 **** --- 6,10 ---- interface I1 { string value(); + void run(in long x); }; Index: Makefile =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/CppAssembly/test1/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 20 Feb 2007 15:37:55 -0000 1.1 --- Makefile 21 Feb 2007 16:05:20 -0000 1.2 *************** *** 1,3 **** --- 1,7 ---- DEST_DIR=gen + ITF_DIR=${DEST_DIR}/interfaces + C1_DIR=${DEST_DIR}/C1 + C2_DIR=${DEST_DIR}/C2 + C3_DIR=${DEST_DIR}/C3 IDL_INCLUDE=-I${DEST_DIR}/idl/interface -I${DEST_DIR}/idl/component *************** *** 10,20 **** local: idl ! ccmtools c++local ${IDL_INCLUDE} -a -o ${DEST_DIR}/interfaces `find ${DEST_DIR}/idl/interface -name '*.idl'` ! ccmtools c++local ${IDL_INCLUDE} -a -o ${DEST_DIR}/components `find ${DEST_DIR}/idl/component -name '*.idl'` ! ccmtools c++assembly ${IDL_INCLUDE} -o ${DEST_DIR}/components `find ${DEST_DIR}/idl/component -name '*.idl'` test1.assembly check: local ccmconfix -confix2 -o ${DEST_DIR} -pname "assembly-test1" -pversion "0.0.1" ! confix2.py --packageroot=`pwd`/${DEST_DIR} --bootstrap --configure --make clean: --- 14,26 ---- local: idl ! ccmtools c++local ${IDL_INCLUDE} -a -o ${ITF_DIR} `find ${DEST_DIR}/idl/interface -name '*.idl'` ! ccmtools c++local ${IDL_INCLUDE} -a -o ${C1_DIR} `find ${DEST_DIR}/idl/component -name '?1.idl'` ! ccmtools c++local ${IDL_INCLUDE} -a -o ${C2_DIR} `find ${DEST_DIR}/idl/component -name '?2.idl'` ! ccmtools c++local ${IDL_INCLUDE} -a -o ${C3_DIR} `find ${DEST_DIR}/idl/component -name '?3.idl'` ! ccmtools c++assembly ${IDL_INCLUDE} -o ${C3_DIR} `find ${DEST_DIR}/idl/component -name '*.idl'` test1.assembly check: local ccmconfix -confix2 -o ${DEST_DIR} -pname "assembly-test1" -pversion "0.0.1" ! cd ${DEST_DIR} && confix2.py --bootstrap --configure --make clean: |