]> git.saurik.com Git - wxWidgets.git/blob - utils/ogl/samples/studio/Makefile.in
Added dummy OnIdle to wxWindow in wxGTK; doc tweaks
[wxWidgets.git] / utils / ogl / samples / studio / Makefile.in
1 # WXXT base directory
2 WXBASEDIR=@WXBASEDIR@
3
4 # set the OS type for compilation
5 OS=@OS@
6 # compile a binary only
7 RULE=bin
8
9 # define exexutable name
10 BIN_TARGET=studio
11 # define binary sources
12 BIN_CPP_SRC=\
13 cspalette.cpp\
14 csprint.cpp\
15 dialogs.cpp\
16 doc.cpp\
17 mainfrm.cpp\
18 project.cpp\
19 shapes.cpp\
20 studio.cpp\
21 symbols.cpp\
22 view.cpp
23
24 #define binary objects
25 BIN_OBJ=\
26 $(BIN_CPP_SRC:.cpp=.o)
27
28 # additional things needed to link
29 BIN_LINK=-lwx_ogl_gtk
30
31 # additional things needed to compile
32 ADD_COMPILE=-I$(WXBASEDIR)/utils/ogl/src -I../bitmaps
33
34 # include the definitions now
35 include ../../../../../template.mak