]>
Commit | Line | Data |
---|---|---|
8b089c5e JS |
1 | # |
2 | # File: makefile.unx | |
3 | # Author: Julian Smart | |
4 | # Created: 1998 | |
5 | # Updated: | |
6 | # Copyright: (c) 1998 Julian Smart | |
7 | # | |
8 | # "%W% %G%" | |
9 | # | |
10 | # Makefile for cube example (UNIX). | |
11 | ||
d969af82 VS |
12 | OPENGL_LIBS=-lGL -lGLU |
13 | #if you have old Mesa, try this: | |
14 | #OPENGL_LIBS=-lMesaGL -lMesaGLU | |
15 | ||
8b089c5e JS |
16 | PROGRAM=cube |
17 | ||
a6f762a6 | 18 | CXX = $(shell wx-config --cxx) |
8b089c5e | 19 | |
c661ecca | 20 | OBJECTS = $(PROGRAM).o |
8b089c5e | 21 | |
c661ecca | 22 | # implementation |
8b089c5e | 23 | |
c661ecca | 24 | .SUFFIXES: .o .cpp |
8b089c5e | 25 | |
c661ecca | 26 | .cpp.o : |
a6f762a6 | 27 | $(CXX) -c `wx-config --cxxflags` -o $@ $< |
c661ecca RR |
28 | |
29 | all: $(PROGRAM) | |
30 | ||
31 | $(PROGRAM): $(OBJECTS) | |
a6f762a6 | 32 | $(CXX) -o $(PROGRAM) $(OBJECTS) `wx-config --libs` -lwx_gtk_gl $(OPENGL_LIBS) |
c661ecca RR |
33 | |
34 | clean: | |
35 | rm -f *.o $(PROGRAM) |