]> git.saurik.com Git - wxWidgets.git/blame - utils/glcanvas/samples/penguin/Makefile
Renamed .nt makefiles to .vc and factored them out; made DND sample compile
[wxWidgets.git] / utils / glcanvas / samples / penguin / Makefile
CommitLineData
aae24d21
RR
1
2CPP = g++
3CC = gcc
4
5Penguin: penguin.o trackball.o lw.o glcanvas.o
6 $(CPP) -o Penguin \
7 penguin.o trackball.o lw.o glcanvas.o \
8 `wx-config --libs` -lMesaGL -lMesaGLU
9
10penguin.o: penguin.cpp
11 $(CPP) `wx-config --cflags` -I../../src -c penguin.cpp
12
45b5751f
JS
13lw.o: lw.cpp
14 $(CPP) `wx-config --cflags` -I../../src -c lw.cpp
aae24d21
RR
15
16trackball.o: trackball.c
17 $(CC) `wx-config --cflags` -I../../src -c trackball.c
18
19glcanvas.o: ../../src/glcanvas.cpp
20 $(CPP) `wx-config --cflags` `gtk-config --cflags` -I../../src -c ../../src/glcanvas.cpp
21
22clean:
f6fcbb63 23 rm -f *.o Penguin