You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(79) |
Aug
(69) |
Sep
(120) |
Oct
(17) |
Nov
(7) |
Dec
|
---|
From: Tim R. <ti...@us...> - 2004-07-13 21:13:16
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13589/lesson04 Modified Files: lesson04.cs Log Message: corrected all examples to use double buffer Index: lesson04.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson04/lesson04.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** lesson04.cs 13 Jul 2004 21:08:37 -0000 1.4 --- lesson04.cs 13 Jul 2004 21:12:57 -0000 1.5 *************** *** 21,25 **** protected void visible( int state ) { if ( state==GLUT_VISIBLE ) { ! glutIdleFunc( new cb0_glutIdleFunc( drawNew ) ); } else { glutIdleFunc( null ); --- 21,25 ---- protected void visible( int state ) { if ( state==GLUT_VISIBLE ) { ! glutIdleFunc( new cb0_glutIdleFunc( redraw ) ); } else { glutIdleFunc( null ); *************** *** 27,31 **** } ! protected void drawNew() { glutPostRedisplay(); rotTri += 0.20f; --- 27,31 ---- } ! protected void redraw() { glutPostRedisplay(); rotTri += 0.20f; |
From: Tim R. <ti...@us...> - 2004-07-13 21:08:46
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12709 Modified Files: lesson04.cs Log Message: use glut constant instead of literals Index: lesson04.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson04/lesson04.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lesson04.cs 13 Jul 2004 21:07:05 -0000 1.3 --- lesson04.cs 13 Jul 2004 21:08:37 -0000 1.4 *************** *** 8,12 **** public Lesson04() { ! glutInitDisplayMode( 0 |2 ); //GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson 04"); --- 8,12 ---- public Lesson04() { ! glutInitDisplayMode( GLUT_RGB | GLUT_DOUBLE ); glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson 04"); |
From: Tim R. <ti...@us...> - 2004-07-13 21:07:14
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12374 Modified Files: lesson04.cs Log Message: example works now correct Index: lesson04.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson04/lesson04.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lesson04.cs 13 Jul 2004 21:00:33 -0000 1.2 --- lesson04.cs 13 Jul 2004 21:07:05 -0000 1.3 *************** *** 8,12 **** public Lesson04() { ! glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson 04"); --- 8,12 ---- public Lesson04() { ! glutInitDisplayMode( 0 |2 ); //GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson 04"); *************** *** 20,34 **** protected void visible( int state ) { - Console.Write( state ); if ( state==GLUT_VISIBLE ) { ! glutIdleFunc( new cb0_glutIdleFunc( draw ) ); } else { ! glutIdleFunc( new cb0_glutIdleFunc( idle ) ); } } ! protected void idle() { } ! protected void initGL() { glShadeModel( GL_SMOOTH ); --- 20,36 ---- protected void visible( int state ) { if ( state==GLUT_VISIBLE ) { ! glutIdleFunc( new cb0_glutIdleFunc( drawNew ) ); } else { ! glutIdleFunc( null ); } } ! protected void drawNew() { ! glutPostRedisplay(); ! rotTri += 0.20f; ! rotQua -= 0.15f; } ! protected void initGL() { glShadeModel( GL_SMOOTH ); *************** *** 82,88 **** glutSwapBuffers(); ! ! rotTri += 0.20f; ! rotQua -= 0.15f; } --- 84,88 ---- glutSwapBuffers(); ! } |
From: Tim R. <ti...@us...> - 2004-07-13 21:00:42
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10886 Modified Files: lesson04.cs Log Message: Test Index: lesson04.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson04/lesson04.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** lesson04.cs 13 Jul 2004 19:51:59 -0000 1.1 --- lesson04.cs 13 Jul 2004 21:00:33 -0000 1.2 *************** *** 2,28 **** using System; ! public class Lesson03 : csdGL { protected float rotTri = 0.0f; protected float rotQua = 0.0f; ! public Lesson03() { glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); ! glutCreateWindow("Lesson 03"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); glutKeyboardFunc( new cb0_glutKeyboardFunc(keyboard) ); glutReshapeFunc( new cb0_glutReshapeFunc( reshape ) ); ! glutVisibilityFunc( new cb0_glutVisibilityFunc( visibility ) ); glutMainLoop(); } ! ! protected void visibility( int status ) { ! if ( status == GLUT_VISIBLE ) { glutIdleFunc( new cb0_glutIdleFunc( draw ) ); } else { ! glutIdleFunc( null ); ! } } --- 2,32 ---- using System; ! public class Lesson04 : csdGL { protected float rotTri = 0.0f; protected float rotQua = 0.0f; ! public Lesson04() { glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); ! glutCreateWindow("Lesson 04"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); glutKeyboardFunc( new cb0_glutKeyboardFunc(keyboard) ); glutReshapeFunc( new cb0_glutReshapeFunc( reshape ) ); ! glutVisibilityFunc( new cb0_glutVisibilityFunc( visible ) ); glutMainLoop(); } ! ! protected void visible( int state ) { ! Console.Write( state ); ! if ( state==GLUT_VISIBLE ) { glutIdleFunc( new cb0_glutIdleFunc( draw ) ); } else { ! glutIdleFunc( new cb0_glutIdleFunc( idle ) ); ! } ! } ! ! protected void idle() { } *************** *** 36,50 **** } - protected void reshape2( int width, int height ) { - float h = ((float)height) / ((float)width); - glViewport (0, 0, width, height); - glMatrixMode (GL_PROJECTION); - glLoadIdentity (); - glFrustum (-1.0, 1.0, -h, h, 5.0, 5.0); - glMatrixMode (GL_MODELVIEW); - glLoadIdentity (); - // glTranslatef (0.0f, 0.0f, -40.0f); - } - protected void reshape( int width, int height ) { if (height==0) height = 1; --- 40,43 ---- *************** *** 90,94 **** glutSwapBuffers(); ! rotTri += 0.2f; rotQua -= 0.15f; } --- 83,87 ---- glutSwapBuffers(); ! rotTri += 0.20f; rotQua -= 0.15f; } *************** *** 99,103 **** public static void Main( string[] args) { ! new Lesson03(); } --- 92,96 ---- public static void Main( string[] args) { ! new Lesson04(); } |
From: Tim R. <ti...@us...> - 2004-07-13 19:52:08
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26810/lesson04 Added Files: Makefile lesson04.cs Log Message: new lessons --- NEW FILE: lesson04.cs --- using csDragons.OpenGL; using System; public class Lesson03 : csdGL { protected float rotTri = 0.0f; protected float rotQua = 0.0f; public Lesson03() { glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson 03"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); glutKeyboardFunc( new cb0_glutKeyboardFunc(keyboard) ); glutReshapeFunc( new cb0_glutReshapeFunc( reshape ) ); glutVisibilityFunc( new cb0_glutVisibilityFunc( visibility ) ); glutMainLoop(); } protected void visibility( int status ) { if ( status == GLUT_VISIBLE ) { glutIdleFunc( new cb0_glutIdleFunc( draw ) ); } else { glutIdleFunc( null ); } } protected void initGL() { glShadeModel( GL_SMOOTH ); glClearColor( 0.0f, 0.0f, 0.0f, 0.0f ); glClearDepth( 1.0f ); glEnable( GL_DEPTH_TEST ); glDepthFunc( GL_LEQUAL ); glHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ); } protected void reshape2( int width, int height ) { float h = ((float)height) / ((float)width); glViewport (0, 0, width, height); glMatrixMode (GL_PROJECTION); glLoadIdentity (); glFrustum (-1.0, 1.0, -h, h, 5.0, 5.0); glMatrixMode (GL_MODELVIEW); glLoadIdentity (); // glTranslatef (0.0f, 0.0f, -40.0f); } protected void reshape( int width, int height ) { if (height==0) height = 1; float h = ((float)width) / ((float)height); glViewport (0, 0, width, height); glMatrixMode( GL_PROJECTION ); glLoadIdentity(); gluPerspective( 45.0f, h, 0.1f, 150.0f ); glMatrixMode( GL_MODELVIEW ); glLoadIdentity(); } protected void draw() { glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); glPushMatrix(); glLoadIdentity(); glTranslatef(-1.5f,0.0f,-6.0f ); glRotatef( rotTri, 0.0f, 1.0f, 0.0f ); glBegin(GL_TRIANGLES); glColor3f( 1.0f, 0.0f, 0.0f); glVertex3f( 0.0f, 1.0f, 0.0f); glColor3f( 0.0f, 1.0f, 0.0f); glVertex3f(-1.0f,-1.0f, 0.0f); glColor3f( 0.0f, 0.0f, 1.0f); glVertex3f( 1.0f,-1.0f, 0.0f); glEnd(); glLoadIdentity(); glTranslatef( 1.5f, 0.0f, -6.0f ); glRotatef( rotQua, 1.0f, 0.0f, 0.0f ); glColor3f(0.5f,0.5f,1.0f); glBegin(GL_QUADS); glVertex3f(-1.0f, 1.0f, 0.0f); glVertex3f( 1.0f, 1.0f, 0.0f); glVertex3f( 1.0f,-1.0f, 0.0f); glVertex3f(-1.0f,-1.0f, 0.0f); glEnd(); glPopMatrix(); glutSwapBuffers(); rotTri += 0.2f; rotQua -= 0.15f; } protected void keyboard( byte key, int x, int y ) { if (key==27) System.Environment.Exit(0); } public static void Main( string[] args) { new Lesson03(); } } --- NEW FILE: Makefile --- CC=mcs DEBUG=/d:DEBUG DEBUG= OPTS=$(DEBUG) LIBS=csdGL.dll MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp FILES = lesson04.exe all: $(FILES) %.exe:%.cs $(MCS) -r:csdGL.dll $^ -o $@ clean: rm -f $(FILES) .IGNORE: clean .EXPORT_ALL_VARIABLES: .PHONY: clean |
From: Tim R. <ti...@us...> - 2004-07-13 19:52:08
|
Update of /cvsroot/csdopenglnet/tutorials/lesson03 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26810/lesson03 Added Files: Makefile lesson03.cs Log Message: new lessons --- NEW FILE: Makefile --- CC=mcs DEBUG=/d:DEBUG DEBUG= OPTS=$(DEBUG) LIBS=csdGL.dll MCS=$(CC) $(OPTS) -lib:/usr/lib/mono/csDragons -lib:/usr/lib/mono/gtk-sharp FILES = lesson03.exe all: $(FILES) %.exe:%.cs $(MCS) -r:csdGL.dll $^ -o $@ clean: rm -f $(FILES) .IGNORE: clean .EXPORT_ALL_VARIABLES: .PHONY: clean --- NEW FILE: lesson03.cs --- using csDragons.OpenGL; using System; public class Lesson03 : csdGL { public Lesson03() { glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson 03"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); glutKeyboardFunc( new cb0_glutKeyboardFunc(keyboard) ); glutReshapeFunc( new cb0_glutReshapeFunc( reshape ) ); glutVisibilityFunc( new cb0_glutVisibilityFunc( visibility ) ); glutMainLoop(); } protected void visibility( int status ) { if ( status == GLUT_VISIBLE ) { draw(); } else { glutIdleFunc( null ); } } protected void initGL() { glShadeModel( GL_SMOOTH ); glClearColor( 0.0f, 0.0f, 0.0f, 0.0f ); glClearDepth( 1.0f ); glEnable( GL_DEPTH_TEST ); glDepthFunc( GL_LEQUAL ); glHint( GL_PERSPECTIVE_CORRECTION_HINT, GL_NICEST ); } protected void reshape2( int width, int height ) { float h = ((float)height) / ((float)width); glViewport (0, 0, width, height); glMatrixMode (GL_PROJECTION); glLoadIdentity (); glFrustum (-1.0, 1.0, -h, h, 5.0, 5.0); glMatrixMode (GL_MODELVIEW); glLoadIdentity (); // glTranslatef (0.0f, 0.0f, -40.0f); } protected void reshape( int width, int height ) { if (height==0) height = 1; float h = ((float)width) / ((float)height); glViewport (0, 0, width, height); glMatrixMode( GL_PROJECTION ); glLoadIdentity(); gluPerspective( 45.0f, h, 0.1f, 150.0f ); glMatrixMode( GL_MODELVIEW ); glLoadIdentity(); } protected void draw() { glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); glPushMatrix(); glLoadIdentity(); glTranslatef(-1.5f,0.0f,-6.0f); glBegin(GL_TRIANGLES); glColor3f( 1.0f, 0.0f, 0.0f); glVertex3f( 0.0f, 1.0f, 0.0f); glColor3f( 0.0f, 1.0f, 0.0f); glVertex3f(-1.0f,-1.0f, 0.0f); glColor3f( 0.0f, 0.0f, 1.0f); glVertex3f( 1.0f,-1.0f, 0.0f); glEnd(); glTranslatef( 3.0f, 0.0f, 0.0f); glColor3f(0.5f,0.5f,1.0f); glBegin(GL_QUADS); glVertex3f(-1.0f, 1.0f, 0.0f); glVertex3f( 1.0f, 1.0f, 0.0f); glVertex3f( 1.0f,-1.0f, 0.0f); glVertex3f(-1.0f,-1.0f, 0.0f); glEnd(); glPopMatrix(); glutSwapBuffers(); } protected void keyboard( byte key, int x, int y ) { if (key==27) System.Environment.Exit(0); } public static void Main( string[] args) { new Lesson03(); } } |
From: Tim R. <ti...@us...> - 2004-07-13 19:46:26
|
Update of /cvsroot/csdopenglnet/tutorials/lesson04 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25493/lesson04 Log Message: Directory /cvsroot/csdopenglnet/tutorials/lesson04 added to the repository |
From: Tim R. <ti...@us...> - 2004-07-13 19:45:36
|
Update of /cvsroot/csdopenglnet/tutorials/lesson03 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25259/lesson03 Log Message: Directory /cvsroot/csdopenglnet/tutorials/lesson03 added to the repository |
From: Tim R. <ti...@us...> - 2004-07-13 19:45:21
|
Update of /cvsroot/csdopenglnet/tutorials/lesson01 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25028/lesson01 Modified Files: lesson01glut.cs Log Message: window caption corrected Index: lesson01glut.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson01/lesson01glut.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** lesson01glut.cs 13 Jul 2004 19:06:37 -0000 1.1.1.1 --- lesson01glut.cs 13 Jul 2004 19:45:12 -0000 1.2 *************** *** 7,11 **** glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 500,500 ); ! glutCreateWindow("Lesson01 GLUT"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); --- 7,11 ---- glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 500,500 ); ! glutCreateWindow("Lesson 01 - GLUT"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); |
From: Tim R. <ti...@us...> - 2004-07-13 19:45:21
|
Update of /cvsroot/csdopenglnet/tutorials In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25028 Modified Files: Makefile Log Message: window caption corrected Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 13 Jul 2004 19:06:37 -0000 1.1.1.1 --- Makefile 13 Jul 2004 19:45:12 -0000 1.2 *************** *** 2,9 **** --- 2,13 ---- $(MAKE) -C lesson01 $(MAKE) -C lesson02 + $(MAKE) -C lesson03 + $(MAKE) -C lesson04 clean: $(MAKE) -C lesson01 clean $(MAKE) -C lesson02 clean + $(MAKE) -C lesson03 clean + $(MAKE) -C lesson04 clean |
From: Tim R. <ti...@us...> - 2004-07-13 19:45:21
|
Update of /cvsroot/csdopenglnet/tutorials/lesson02 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25028/lesson02 Modified Files: lesson02.cs Log Message: window caption corrected Index: lesson02.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson02/lesson02.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** lesson02.cs 13 Jul 2004 19:36:30 -0000 1.2 --- lesson02.cs 13 Jul 2004 19:45:12 -0000 1.3 *************** *** 7,11 **** glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); ! glutCreateWindow("Lesson01 GLUT"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); --- 7,11 ---- glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); glutInitWindowSize( 640, 480 ); ! glutCreateWindow("Lesson 02"); initGL(); glutDisplayFunc( new cb0_glutDisplayFunc( draw ) ); |
From: Tim R. <ti...@us...> - 2004-07-13 19:36:39
|
Update of /cvsroot/csdopenglnet/tutorials/lesson02 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23092 Modified Files: lesson02.cs Log Message: missing viewport Index: lesson02.cs =================================================================== RCS file: /cvsroot/csdopenglnet/tutorials/lesson02/lesson02.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** lesson02.cs 13 Jul 2004 19:06:37 -0000 1.1.1.1 --- lesson02.cs 13 Jul 2004 19:36:30 -0000 1.2 *************** *** 6,10 **** public Lesson02() { glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); ! glutInitWindowSize( 500,500 ); glutCreateWindow("Lesson01 GLUT"); initGL(); --- 6,10 ---- public Lesson02() { glutInitDisplayMode( GLUT_RGB | GLUT_DEPTH ); ! glutInitWindowSize( 640, 480 ); glutCreateWindow("Lesson01 GLUT"); initGL(); *************** *** 33,45 **** } protected void reshape( int width, int height ) { if (height==0) height = 1; - if (width==0) width = 1; float h = ((float)width) / ((float)height); glMatrixMode( GL_PROJECTION ); glLoadIdentity(); ! gluPerspective( 45.0f, h, 0.1f, 100.0f ); glMatrixMode( GL_MODELVIEW ); --- 33,56 ---- } + protected void reshape2( int width, int height ) { + float h = ((float)height) / ((float)width); + glViewport (0, 0, width, height); + glMatrixMode (GL_PROJECTION); + glLoadIdentity (); + glFrustum (-1.0, 1.0, -h, h, 5.0, 5.0); + glMatrixMode (GL_MODELVIEW); + glLoadIdentity (); + // glTranslatef (0.0f, 0.0f, -40.0f); + } + protected void reshape( int width, int height ) { if (height==0) height = 1; float h = ((float)width) / ((float)height); + glViewport (0, 0, width, height); glMatrixMode( GL_PROJECTION ); glLoadIdentity(); ! gluPerspective( 45.0f, h, 0.1f, 150.0f ); glMatrixMode( GL_MODELVIEW ); *************** *** 50,54 **** glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); ! glLoadIdentity(); glTranslatef(-1.5f,0.0f,-6.0f); --- 61,66 ---- glClear ( GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT ); ! glPushMatrix(); ! glLoadIdentity(); glTranslatef(-1.5f,0.0f,-6.0f); *************** *** 67,70 **** --- 79,84 ---- glEnd(); + glPopMatrix(); + glutSwapBuffers(); } |
From: Tim R. <ti...@us...> - 2004-07-13 19:04:42
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15582/generator Modified Files: Makefile Log Message: install option added Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/generator/Makefile,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Makefile 12 Jul 2004 17:47:36 -0000 1.2 --- Makefile 13 Jul 2004 19:04:33 -0000 1.3 *************** *** 46,53 **** --- 46,58 ---- ln -sf ../cbonding/libcsdGL.so . + install: install-gac + + install-gac: csdGL.dll csdGL_Gtk.dll gacutil /i csdGL.dll /f /package $(PACKAGE) gacutil /i csdGL_Gtk.dll /f /package $(PACKAGE) + uninstall: uninstall-gac + uninstall-gac: gacutil /u csdGL |
From: Tim R. <ti...@us...> - 2004-07-13 19:04:42
|
Update of /cvsroot/csdopenglnet/csdOpenGL/tools In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15582/tools Modified Files: Makefile Log Message: install option added Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/tools/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 12 Jul 2004 17:17:29 -0000 1.1.1.1 --- Makefile 13 Jul 2004 19:04:33 -0000 1.2 *************** *** 12,18 **** --- 12,22 ---- $(MCS) -r:System.Drawing -target:library $(FILES) -out:$@ + install: install-gac + install-gac: csdGLtools.dll gacutil /i csdGLtools.dll /f /package $(PACKAGE) + uninstall: uninstall-gac + uninstall-gac: gacutil /u csdGLtools |
From: Tim R. <ti...@us...> - 2004-07-13 19:04:41
|
Update of /cvsroot/csdopenglnet/csdOpenGL/cbonding In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15582/cbonding Modified Files: Makefile Log Message: install option added Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/cbonding/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 12 Jul 2004 17:18:12 -0000 1.1.1.1 --- Makefile 13 Jul 2004 19:04:33 -0000 1.2 *************** *** 23,27 **** %:%.cc g++ $(INCPATH) $(LIBPATH) $^ $(LIBS) -o $@ ! clean: rm -f *.so --- 23,34 ---- %:%.cc g++ $(INCPATH) $(LIBPATH) $^ $(LIBS) -o $@ ! ! install: ! mkdir -p /usr/lib ! cp libcsdGL.so /usr/lib ! ! uninstall: ! rm /usr/lib/libcsdGL.so ! clean: rm -f *.so |
From: Tim R. <ti...@us...> - 2004-07-13 19:04:41
|
Update of /cvsroot/csdopenglnet/csdOpenGL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15582 Modified Files: Makefile Log Message: install option added Index: Makefile =================================================================== RCS file: /cvsroot/csdopenglnet/csdOpenGL/Makefile,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Makefile 12 Jul 2004 17:14:16 -0000 1.1.1.1 --- Makefile 13 Jul 2004 19:04:33 -0000 1.2 *************** *** 10,13 **** --- 10,23 ---- $(MAKE) -C doc + install: + $(MAKE) -C generator install + $(MAKE) -C tools install + $(MAKE) -C cbonding install + + uninstall: + $(MAKE) -C generator uninstall + $(MAKE) -C tools uninstall + $(MAKE) -C cbonding uninstall + clean: $(MAKE) -C doxygen clean |
From: Tim R. <ti...@us...> - 2004-07-12 19:02:38
|
Update of /cvsroot/csdopenglnet/csdOpenGL/generator In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21430 Removed Files: csdGLUBase.cs Log Message: this is a generated and not a developed file --- csdGLUBase.cs DELETED --- |