From: Tim R. <ti...@us...> - 2004-09-11 12:27:35
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29212/GL Modified Files: GL.build Makefile Log Message: Cg is brought to NAnt Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/Makefile,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Makefile 11 Sep 2004 12:07:14 -0000 1.7 --- Makefile 11 Sep 2004 12:27:21 -0000 1.8 *************** *** 17,32 **** $(MCS) -target:library $^ -out:$@ - csdGLBase.cs: gl_8h.xml gl.xml - $(GEN) gl.xml - - csdGLUBase.cs: gl_8h.xml glu_8h.xml glu.xml - $(GEN) glu.xml - - csdGLExtBase.cs: glext_8h.xml - $(GEN) glext.xml - - csdGLUTBase.cs: gl_8h.xml glut_8h.xml glut.xml - $(GEN) glut.xml - %.xml.cs:%.xml $(GEN) $^ --- 17,20 ---- Index: GL.build =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/GL.build,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** GL.build 11 Sep 2004 12:07:14 -0000 1.1 --- GL.build 11 Sep 2004 12:27:21 -0000 1.2 *************** *** 5,9 **** <delete file="${build.dir}/csDragons.OpenGL.dll" failonerror="false" /> <delete file="${build.dir}/csDragons.OpenGL.dll.config" failonerror="false" /> ! <delete file="*.xml.cs" failonerror="false" /> </target> <target name="wrapper" description="builds GL wrapper"> --- 5,13 ---- <delete file="${build.dir}/csDragons.OpenGL.dll" failonerror="false" /> <delete file="${build.dir}/csDragons.OpenGL.dll.config" failonerror="false" /> ! <delete> ! <fileset> ! <include name="*.xml.cs" /> ! </fileset> ! </delete> </target> <target name="wrapper" description="builds GL wrapper"> *************** *** 17,21 **** </in> <do> ! <exec program="${gen}" commandline="${filename}" unless="${file::up-to-date('${filename}.cs','${filename}')}"/> </do> </foreach> --- 21,25 ---- </in> <do> ! <exec program="${gen}" commandline="${filename}" unless="${file::up-to-date('${filename}','${filename}.cs')}"/> </do> </foreach> |