]> git.saurik.com Git - wxWidgets.git/blame - samples/widgets/makefile.unx
Test to avoid crashes in some circumstances
[wxWidgets.git] / samples / widgets / makefile.unx
CommitLineData
2add9e3c
RD
1# =========================================================================
2# This makefile was generated by
a236aa20 3# Bakefile 0.2.2 (http://bakefile.sourceforge.net)
2add9e3c
RD
4# Do not modify, all changes will be overwritten!
5# =========================================================================
6
7
8
9# -------------------------------------------------------------------------
10# These are configurable options:
11# -------------------------------------------------------------------------
12
13# C++ compiler
a236aa20 14CXX := g++
2add9e3c
RD
15
16# Standard flags for C++
a236aa20 17CXXFLAGS :=
2add9e3c
RD
18
19# Standard preprocessor flags (common for CC and CXX)
a236aa20 20CPPFLAGS :=
2add9e3c
RD
21
22# Standard linker flags
a236aa20 23LDFLAGS :=
2add9e3c
RD
24
25# Location and arguments of wx-config script
a236aa20 26WX_CONFIG := wx-config
2add9e3c 27
a236aa20
VZ
28# Port of the wx library to build against [gtk1,gtk2,msw,x11,motif,mgl,mac,dfb]
29WX_PORT := $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 1)
ae4ccf12 30
a236aa20
VZ
31# Use DLL build of wx library to use? [0,1]
32WX_SHARED := $(shell if test -z `$(WX_CONFIG) --selected-config | cut -d '-' -f 5`; then echo 1; else echo 0; fi)
ae4ccf12 33
a236aa20
VZ
34# Compile Unicode build of wxWidgets? [0,1]
35WX_UNICODE := $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 2 | sed 's/unicode/1/;s/ansi/0/')
ae4ccf12 36
a236aa20
VZ
37# Use debug build of wxWidgets (define __WXDEBUG__)? [0,1]
38WX_DEBUG := $(shell $(WX_CONFIG) --selected-config | cut -d '-' -f 3 | sed 's/debug/1/;s/release/0/')
ae4ccf12
RD
39
40# Version of the wx library to build against.
a236aa20 41WX_VERSION := $(shell $(WX_CONFIG) --selected-config | sed -e 's/.*-\([0-9]*\)\.\([0-9]*\)$$/\1\2/')
2add9e3c
RD
42
43
44
45# -------------------------------------------------------------------------
46# Do not modify the rest of this file!
47# -------------------------------------------------------------------------
48
49### Variables: ###
50
51CPPDEPS = -MT$@ -MF`echo $@ | sed -e 's,\.o$$,.d,'` -MD
ae4ccf12
RD
52WX_VERSION_MAJOR = $(shell echo $(WX_VERSION) | cut -c1,1)
53WX_VERSION_MINOR = $(shell echo $(WX_VERSION) | cut -c2,2)
54WX_CONFIG_FLAGS = $(WX_CONFIG_DEBUG_FLAG) $(WX_CONFIG_UNICODE_FLAG) \
55 $(WX_CONFIG_SHARED_FLAG) --toolkit=$(WX_PORT) \
56 --version=$(WX_VERSION_MAJOR).$(WX_VERSION_MINOR)
57WIDGETS_CXXFLAGS = -I. `$(WX_CONFIG) --cxxflags $(WX_CONFIG_FLAGS)` $(CPPFLAGS) \
58 $(CXXFLAGS)
2add9e3c
RD
59WIDGETS_OBJECTS = \
60 widgets_bmpcombobox.o \
61 widgets_button.o \
62 widgets_checkbox.o \
a236aa20 63 widgets_choice.o \
2add9e3c
RD
64 widgets_clrpicker.o \
65 widgets_combobox.o \
66 widgets_datepick.o \
67 widgets_dirctrl.o \
68 widgets_dirpicker.o \
69 widgets_filepicker.o \
70 widgets_fontpicker.o \
71 widgets_gauge.o \
72 widgets_hyperlnk.o \
a236aa20 73 widgets_itemcontainer.o \
2add9e3c
RD
74 widgets_listbox.o \
75 widgets_notebook.o \
76 widgets_odcombobox.o \
77 widgets_radiobox.o \
3f7f284d 78 widgets_searchctrl.o \
2add9e3c
RD
79 widgets_slider.o \
80 widgets_spinbtn.o \
81 widgets_static.o \
82 widgets_textctrl.o \
83 widgets_toggle.o \
84 widgets_widgets.o
85
86### Conditionally set variables: ###
87
ae4ccf12
RD
88ifeq ($(WX_DEBUG),0)
89WX_CONFIG_DEBUG_FLAG = --debug=no
90endif
91ifeq ($(WX_DEBUG),1)
92WX_CONFIG_DEBUG_FLAG = --debug=yes
93endif
94ifeq ($(WX_UNICODE),0)
95WX_CONFIG_UNICODE_FLAG = --unicode=no
96endif
97ifeq ($(WX_UNICODE),1)
98WX_CONFIG_UNICODE_FLAG = --unicode=yes
99endif
100ifeq ($(WX_SHARED),0)
101WX_CONFIG_SHARED_FLAG = --static=yes
102endif
103ifeq ($(WX_SHARED),1)
104WX_CONFIG_SHARED_FLAG = --static=no
105endif
2add9e3c
RD
106
107
108### Targets: ###
109
ae4ccf12 110all: test_for_selected_wxbuild widgets
2add9e3c
RD
111
112install: all
113
114uninstall:
2b5f62a0
VZ
115
116clean:
2add9e3c
RD
117 rm -f ./*.o
118 rm -f ./*.d
119 rm -f widgets
120
ae4ccf12
RD
121test_for_selected_wxbuild:
122 @$(WX_CONFIG) $(WX_CONFIG_FLAGS)
123
2add9e3c 124widgets: $(WIDGETS_OBJECTS)
ae4ccf12 125 $(CXX) -o $@ $(WIDGETS_OBJECTS) $(LDFLAGS) `$(WX_CONFIG) $(WX_CONFIG_FLAGS) --libs xml,adv,html,core,base`
2add9e3c
RD
126
127widgets_bmpcombobox.o: ./bmpcombobox.cpp
128 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
129
130widgets_button.o: ./button.cpp
131 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
132
133widgets_checkbox.o: ./checkbox.cpp
134 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
135
a236aa20
VZ
136widgets_choice.o: ./choice.cpp
137 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
138
2add9e3c
RD
139widgets_clrpicker.o: ./clrpicker.cpp
140 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
141
142widgets_combobox.o: ./combobox.cpp
143 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
144
145widgets_datepick.o: ./datepick.cpp
146 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
147
148widgets_dirctrl.o: ./dirctrl.cpp
149 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
150
151widgets_dirpicker.o: ./dirpicker.cpp
152 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
153
154widgets_filepicker.o: ./filepicker.cpp
155 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
156
157widgets_fontpicker.o: ./fontpicker.cpp
158 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
159
160widgets_gauge.o: ./gauge.cpp
161 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
162
163widgets_hyperlnk.o: ./hyperlnk.cpp
164 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
165
a236aa20
VZ
166widgets_itemcontainer.o: ./itemcontainer.cpp
167 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
168
2add9e3c
RD
169widgets_listbox.o: ./listbox.cpp
170 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
171
172widgets_notebook.o: ./notebook.cpp
173 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
174
175widgets_odcombobox.o: ./odcombobox.cpp
176 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
177
178widgets_radiobox.o: ./radiobox.cpp
179 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
180
3f7f284d
RD
181widgets_searchctrl.o: ./searchctrl.cpp
182 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
183
2add9e3c
RD
184widgets_slider.o: ./slider.cpp
185 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
186
187widgets_spinbtn.o: ./spinbtn.cpp
188 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
189
190widgets_static.o: ./static.cpp
191 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
192
193widgets_textctrl.o: ./textctrl.cpp
194 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
195
196widgets_toggle.o: ./toggle.cpp
197 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
198
199widgets_widgets.o: ./widgets.cpp
200 $(CXX) -c -o $@ $(WIDGETS_CXXFLAGS) $(CPPDEPS) $<
201
202.PHONY: all install uninstall clean
203
204
205# Dependencies tracking:
206-include ./*.d