]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/opengl/isosurf/makefile.unx
new VC++ project files
[wxWidgets.git] / samples / opengl / isosurf / makefile.unx
index fbb993eb4c4d3f930d67e9239c7c6fa7ade8fd6c..86c4c5a6a4643040dc2baabfd2bf28749ac5c472 100644 (file)
@@ -9,6 +9,10 @@
 #
 # Makefile for isosurf example (UNIX).
 
+OPENGL_LIBS=-lGL -lGLU
+#if you have old Mesa, try this:
+#OPENGL_LIBS=-lMesaGL -lMesaGLU
+
 PROGRAM=isosurf
 
 CC = gcc
@@ -25,7 +29,7 @@ OBJECTS = $(PROGRAM).o
 all: $(PROGRAM) isosurf.dat
 
 $(PROGRAM):    $(OBJECTS)
-       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -lwx_gtk_gl -lMesaGL -lMesaGLU
+       $(CC) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -lwx_gtk_gl $(OPENGL_LIBS)
 
 clean: 
        rm -f *.o $(PROGRAM)