From: Robert L. <rle...@us...> - 2007-03-02 13:27:33
|
Update of /cvsroot/ccmtools/ccmtools/test/CppAssembly/prototype1 In directory sc8-pr-cvs4.sourceforge.net:/tmp/cvs-serv20085/test/CppAssembly/prototype1 Modified Files: Makefile Log Message: new prototype Index: Makefile =================================================================== RCS file: /cvsroot/ccmtools/ccmtools/test/CppAssembly/prototype1/Makefile,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Makefile 2 Mar 2007 13:11:04 -0000 1.1 --- Makefile 2 Mar 2007 13:27:30 -0000 1.2 *************** *** 6,9 **** --- 6,20 ---- local: ccmidl -idl3 -o gen/idl prototype1.idl + ccmtools c++local -a -o gen/itf -I$(ITF) `find $(ITF) -name '*.idl'` ccmtools c++local -a -o gen/world -I$(ITF) -I$(COMP) $(COMP)/World/*.idl ccmtools c++local -a -o gen/space -I$(ITF) -I$(COMP) $(COMP)/Space/*.idl + + check: local + cp -p impl/space/*.h impl/space/*.cc gen/space/ + ccmconfix -confix2 -o gen -pname "assembly-prototype2" -pversion "0.0.1" + cd gen && confix2.py --bootstrap --configure --make --targets=check + + clean: + cd gen && confix2.py --make --targets=clean + rm -rf gen + |