From: Tim R. <ti...@us...> - 2004-10-20 09:12:38
|
Update of /cvsroot/csdopenglnet/csdOpenGL/GL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30177/GL Modified Files: Makefile gl.xml glext.xml glu.xml glut.xml glxtokens.xml Log Message: new build system Index: glext.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glext.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** glext.xml 13 Aug 2004 12:27:05 -0000 1.1 --- glext.xml 20 Oct 2004 09:12:11 -0000 1.2 *************** *** 1,4 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>glext_8h.xml</xmlInput> <linkLibrary>libGL.so</linkLibrary> <className>csdGLExtBase</className> --- 1,4 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>../xml/glext_8h.xml</xmlInput> <linkLibrary>libGL.so</linkLibrary> <className>csdGLExtBase</className> Index: gl.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/gl.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** gl.xml 11 Sep 2004 18:52:45 -0000 1.5 --- gl.xml 20 Oct 2004 09:12:11 -0000 1.6 *************** *** 1,4 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>gl_8h.xml</xmlInput> <linkLibrary>opengl32.dll</linkLibrary> <className>csdGLBase</className> --- 1,4 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>../xml/gl_8h.xml</xmlInput> <linkLibrary>opengl32.dll</linkLibrary> <className>csdGLBase</className> Index: glut.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glut.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** glut.xml 11 Sep 2004 19:36:36 -0000 1.7 --- glut.xml 20 Oct 2004 09:12:11 -0000 1.8 *************** *** 1,4 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>glut_8h.xml</xmlInput> <linkLibrary>glut32.dll</linkLibrary> <className>csdGLUTBase</className> --- 1,4 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>../xml/glut_8h.xml</xmlInput> <linkLibrary>glut32.dll</linkLibrary> <className>csdGLUTBase</className> *************** *** 11,15 **** </BaseTypes> <TypeDefs> ! <File>gl_8h.xml</File> </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> --- 11,15 ---- </BaseTypes> <TypeDefs> ! <File>../xml/gl_8h.xml</File> </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> Index: glu.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glu.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** glu.xml 11 Sep 2004 18:52:45 -0000 1.5 --- glu.xml 20 Oct 2004 09:12:11 -0000 1.6 *************** *** 1,4 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>glu_8h.xml</xmlInput> <linkLibrary>glu32.dll</linkLibrary> <className>csdGLUBase</className> --- 1,4 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>../xml/glu_8h.xml</xmlInput> <linkLibrary>glu32.dll</linkLibrary> <className>csdGLUBase</className> *************** *** 11,15 **** </BaseTypes> <TypeDefs> ! <File>gl_8h.xml</File> </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> --- 11,15 ---- </BaseTypes> <TypeDefs> ! <File>../xml/gl_8h.xml</File> </TypeDefs> <Namespace>csDragons.OpenGL</Namespace> Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 13 Sep 2004 17:13:17 -0000 1.10 --- Makefile 20 Oct 2004 09:12:11 -0000 1.11 *************** *** 1,13 **** ! FILES=gl.xml.cs csdGL.cs glu.xml.cs glut.xml.cs Exceptions.cs DelegateCallingConventionCdeclAttribute.cs ! GEN=mono ../generator/generator.exe ! CC=mcs - DEBUG=/d:DEBUG - DEBUG= - OPTS=$(DEBUG) - MCS=$(CC) $(OPTS) - PACKAGE=csDragons - GAC=gacutil $(GACUTIL_FLAGS) DLL=csDragons.OpenGL.dll --- 1,8 ---- ! include ../scripts/Makefile.Init ! FILES=gl.xml.cs csdGL.cs glu.xml.cs glut.xml.cs Exceptions.cs DelegateCallingConventionCdeclAttribute.cs ! TARGETDIR=../build ! GEN=$(RUN) ../generator/generator.exe DLL=csDragons.OpenGL.dll *************** *** 16,22 **** $(DLL): AssemblyInfo.cs $(FILES) $(MCS) -target:library $^ -out:$@ %.xml.cs:%.xml ! $(GEN) $^ install: install-gac --- 11,18 ---- $(DLL): AssemblyInfo.cs $(FILES) $(MCS) -target:library $^ -out:$@ + $(CP) $@ $@.config $(TARGETDIR) %.xml.cs:%.xml ! $(GEN) -q $^ install: install-gac *************** *** 32,45 **** clean: ! rm -f *.exe ! rm -f *.dll ! rm -f *.xml.cs ! ! .IGNORE: ! clean ! ! .EXPORT_ALL_VARIABLES: ! ! .PHONY: ! clean ! --- 28,32 ---- clean: ! $(RM) *.exe ! $(RM) *.dll ! $(RM) *.xml.cs Index: glxtokens.xml =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/GL/glxtokens.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** glxtokens.xml 17 Aug 2004 09:09:06 -0000 1.3 --- glxtokens.xml 20 Oct 2004 09:12:11 -0000 1.4 *************** *** 1,4 **** <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>glxtokens_8h.xml</xmlInput> <linkLibrary>libcsdGL.so</linkLibrary> <className>csdGLXTokens</className> --- 1,4 ---- <Configuration xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> ! <xmlInput>../xml/glxtokens_8h.xml</xmlInput> <linkLibrary>libcsdGL.so</linkLibrary> <className>csdGLXTokens</className> |