OpenGl works now under GTK

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1360 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-01-10 10:49:57 +00:00
parent 71432ef81f
commit aae24d21a3
24 changed files with 1534 additions and 225 deletions

View File

@@ -0,0 +1,23 @@
CPP = g++
CC = gcc
Penguin: penguin.o trackball.o lw.o glcanvas.o
$(CPP) -o Penguin \
penguin.o trackball.o lw.o glcanvas.o \
`wx-config --libs` -lMesaGL -lMesaGLU
penguin.o: penguin.cpp
$(CPP) `wx-config --cflags` -I../../src -c penguin.cpp
lw.o: lw.c
$(CC) `wx-config --cflags` -I../../src -c lw.c
trackball.o: trackball.c
$(CC) `wx-config --cflags` -I../../src -c trackball.c
glcanvas.o: ../../src/glcanvas.cpp
$(CPP) `wx-config --cflags` `gtk-config --cflags` -I../../src -c ../../src/glcanvas.cpp
clean:
rm -f *.o penguin