Update of /cvsroot/csdopenglnet/csdOpenGL/generator
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27578/generator
Modified Files:
Makefile
Log Message:
added freeglut support
Index: Makefile
===================================================================
RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/Makefile,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** Makefile 17 Jul 2004 17:21:20 -0000 1.5
--- Makefile 20 Jul 2004 09:07:22 -0000 1.6
***************
*** 1,4 ****
FILES=generator.cs AssemblyInfo.cs define.cs typedef.cs function.cs
! GLFILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs
CC=mcs
DEBUG=/d:DEBUG
--- 1,4 ----
FILES=generator.cs AssemblyInfo.cs define.cs typedef.cs function.cs
! GLFILES=csdGLBase.cs csdGL.cs csdGLUBase.cs csdGLUTBase.cs csdFreeGLUTBase.cs csdFreeGLUT_extBase.cs csdFreeGLUT_stdBase.cs
CC=mcs
DEBUG=/d:DEBUG
***************
*** 26,35 ****
mono ./csdGenerator.exe gl_8h.xml libcsdGL.so csdGLBase System.Object csdGLBase.cs
- csdGLUTBase.cs: csdGenerator.exe gl_8h.xml glut_8h.xml
- mono ./csdGenerator.exe glut_8h.xml libcsdGL.so csdGLUTBase csdGLUBase csdGLUTBase.cs gl_8h.xml
-
csdGLUBase.cs: csdGenerator.exe gl_8h.xml glu_8h.xml
mono ./csdGenerator.exe glu_8h.xml libcsdGL.so csdGLUBase csdGLBase csdGLUBase.cs gl_8h.xml
!
gl_8h.xml:
ln -sf ../doxygen/xml/gl_8h.xml .
--- 26,45 ----
mono ./csdGenerator.exe gl_8h.xml libcsdGL.so csdGLBase System.Object csdGLBase.cs
csdGLUBase.cs: csdGenerator.exe gl_8h.xml glu_8h.xml
mono ./csdGenerator.exe glu_8h.xml libcsdGL.so csdGLUBase csdGLBase csdGLUBase.cs gl_8h.xml
!
! csdGLUTBase.cs: csdGenerator.exe gl_8h.xml glut_8h.xml
! mono ./csdGenerator.exe glut_8h.xml libcsdGL.so csdGLUTBase csdFreeGLUT_stdBase csdGLUTBase.cs gl_8h.xml
!
! csdFreeGLUTBase.cs: csdGenerator.exe gl_8h.xml freeglut_8h.xml
! mono ./csdGenerator.exe freeglut_8h.xml libcsdGL.so csdFreeGLUTBase csdGLUBase csdFreeGLUTBase.cs gl_8h.xml
!
! csdFreeGLUT_extBase.cs: csdGenerator.exe gl_8h.xml freeglut_ext_8h.xml
! mono ./csdGenerator.exe freeglut_ext_8h.xml libcsdGL.so csdFreeGLUT_extBase csdFreeGLUTBase csdFreeGLUT_extBase.cs glu_8h.xml gl_8h.xml
!
! csdFreeGLUT_stdBase.cs: csdGenerator.exe gl_8h.xml freeglut_std_8h.xml
! mono ./csdGenerator.exe freeglut_std_8h.xml libcsdGL.so csdFreeGLUT_stdBase csdFreeGLUT_extBase csdFreeGLUT_stdBase.cs glu_8h.xml gl_8h.xml
!
!
gl_8h.xml:
ln -sf ../doxygen/xml/gl_8h.xml .
***************
*** 41,44 ****
--- 51,63 ----
ln -sf ../doxygen/xml/glut_8h.xml .
+ freeglut_8h.xml:
+ ln -sf ../doxygen/xml/freeglut_8h.xml .
+
+ freeglut_std_8h.xml:
+ ln -sf ../doxygen/xml/freeglut_std_8h.xml .
+
+ freeglut_ext_8h.xml:
+ ln -sf ../doxygen/xml/freeglut_ext_8h.xml .
+
glxtokens_8h.xml:
ln -sf ../doxygen/xml/glxtokens_8h.xml .
|