]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/opengl/penguin/makefile.unx
wxMGL support
[wxWidgets.git] / samples / opengl / penguin / makefile.unx
index 2add0896b3053967a63bda0deee4683344906ff8..aaea80b74bf4e74eaba8f7b749cd288cd57b3977 100644 (file)
@@ -7,13 +7,17 @@
 #
 # Makefile for penguin example (UNIX).
 
+OPENGL_LIBS=-lGL -lGLU
+#if you have old Mesa, try this:
+#OPENGL_LIBS=-lMesaGL -lMesaGLU
+
 CPP = g++
 CC = gcc
 
 Penguin: penguin.o trackball.o lw.o
        $(CPP) -o Penguin \
        penguin.o trackball.o lw.o \
-       `wx-config --libs` -lwx_gtk_gl -lMesaGL -lMesaGLU
+       `wx-config --libs` -lwx_gtk_gl $(OPENGL_LIBS)
 
 penguin.o: penguin.cpp
        $(CPP) `wx-config --cflags` -I../../gtk -c penguin.cpp