Some Motif fixes; makefile fixes; added wxTransferStreamToFile/FileToStream for wxWin
[wxWidgets.git] / utils / ogl / samples / ogledit / Makefile
1 #
2 # File: Makefile
3 # Author: Julian Smart
4 # Created: 1999
5 # Updated:
6 # Copyright: (c) 2000 Julian Smart
7 #
8 # Makefile for OGL demo (GTK version)
9 #
10 # This makefile requires wxWindows/GTK to be
11 # installed (possibly using "make install")
12 # on your system.
13 #
14
15 CPP = gcc
16 CC = gcc
17 WXCONFIG=../../../../wx-config
18 WXINCLUDE=-I../../../../include
19 WXLIB=-L../../../../lib
20
21 OBJECTS=ogledit.o palette.o doc.o view.o
22
23 ogledit: $(OBJECTS)
24 $(CPP) -o ogledit $(OBJECTS) `$(WXCONFIG) --libs` $(WXLIB) -logl
25
26 ogledit.o: ogledit.cpp
27 $(CPP) `$(WXCONFIG) --cflags` -I../../src $(WXINCLUDE) -c ogledit.cpp
28
29 palette.o: palette.cpp
30 $(CPP) `$(WXCONFIG) --cflags` -I../../src $(WXINCLUDE) -c palette.cpp
31
32 doc.o: doc.cpp
33 $(CPP) `$(WXCONFIG) --cflags` -I../../src $(WXINCLUDE) -c doc.cpp
34
35 view.o: view.cpp
36 $(CPP) `$(WXCONFIG) --cflags` -I../../src $(WXINCLUDE) -c view.cpp
37
38 clean:
39 rm -f *.o ogledit