6 # Copyright: (c) 1998 Julian Smart
8 # Makefile for penguin example (UNIX).
10 OPENGL_LIBS=-lGL -lGLU
11 #if you have old Mesa, try this:
12 #OPENGL_LIBS=-lMesaGL -lMesaGLU
14 CC = $(shell wx-config --cc)
15 CXX = $(shell wx-config --cxx)
17 Penguin: penguin.o trackball.o lw.o
19 penguin.o trackball.o lw.o \
20 `wx-config --libs` -lwx_gtk_gl $(OPENGL_LIBS)
22 penguin.o: penguin.cpp
23 $(CXX) `wx-config --cxxflags` -I../../gtk -c penguin.cpp
26 $(CXX) `wx-config --cxxflags` -I../../gtk -c lw.cpp
28 trackball.o: trackball.c
29 $(CC) `wx-config --cflags` -I../../gtk -c trackball.c