]> git.saurik.com Git - wxWidgets.git/blame - demos/life/makefile.gcc
Defaults in wxWinCE documented.
[wxWidgets.git] / demos / life / makefile.gcc
CommitLineData
264af224
VS
1# =========================================================================
2# This makefile was generated by
8c9f8f91 3# Bakefile 0.1.8 (http://bakefile.sourceforge.net)
264af224
VS
4# Do not modify, all changes will be overwritten!
5# =========================================================================
6
fd9f42b6 7include ../../build/msw/config.gcc
264af224
VS
8
9# -------------------------------------------------------------------------
10# Do not modify the rest of this file!
11# -------------------------------------------------------------------------
12
13### Variables: ###
14
4818141b 15WX_RELEASE_NODOT = 26
b17c1746
DE
16OBJS = \
17 gcc_$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WXDLLFLAG)$(CFG)
d3d0b8db 18LIBDIRNAME = .\..\..\lib\gcc_$(LIBTYPE_SUFFIX)$(CFG)
b17c1746
DE
19SETUPHDIR = \
20 $(LIBDIRNAME)\$(PORTNAME)$(WXUNIVNAME)$(WXUNICODEFLAG)$(WXDEBUGFLAG)
8c9f8f91
JS
21LIFE_CXXFLAGS = $(__DEBUGINFO) $(__OPTIMIZEFLAG_2) $(__THREADSFLAG) $(GCCFLAGS) \
22 -DHAVE_W32API_H -D__WXMSW__ $(__WXUNIV_DEFINE_p) $(__DEBUG_DEFINE_p) \
23 $(__EXCEPTIONS_DEFINE_p) $(__RTTI_DEFINE_p) $(__THREAD_DEFINE_p) \
24 $(__UNICODE_DEFINE_p) -I.\..\..\include -I$(SETUPHDIR) -W -Wall -I. \
25 $(__DLLFLAG_p) -I.\..\..\samples -DNOPCH $(__RTTIFLAG_5) \
26 $(__EXCEPTIONSFLAG_6) -Wno-ctor-dtor-privacy $(CPPFLAGS) $(CXXFLAGS)
264af224
VS
27LIFE_OBJECTS = \
28 $(OBJS)\life_life.o \
29 $(OBJS)\life_dialogs.o \
30 $(OBJS)\life_game.o \
31 $(OBJS)\life_reader.o \
32 $(OBJS)\life_life_rc.o
264af224
VS
33
34### Conditionally set variables: ###
35
36ifeq ($(GCC_VERSION),2.95)
37GCCFLAGS = -fvtable-thunks
38endif
39ifeq ($(USE_GUI),0)
40PORTNAME = base
41endif
42ifeq ($(USE_GUI),1)
43PORTNAME = msw
44endif
45ifeq ($(BUILD),debug)
46ifeq ($(DEBUG_FLAG),default)
47WXDEBUGFLAG = d
48endif
49endif
50ifeq ($(DEBUG_FLAG),1)
51WXDEBUGFLAG = d
52endif
264af224
VS
53ifeq ($(UNICODE),1)
54WXUNICODEFLAG = u
55endif
56ifeq ($(WXUNIV),1)
57WXUNIVNAME = univ
58endif
b17c1746
DE
59ifeq ($(SHARED),1)
60WXDLLFLAG = dll
264af224 61endif
d3d0b8db
JS
62ifeq ($(SHARED),0)
63LIBTYPE_SUFFIX = lib
64endif
65ifeq ($(SHARED),1)
66LIBTYPE_SUFFIX = dll
67endif
dd65d8c8
RN
68ifeq ($(MONOLITHIC),0)
69EXTRALIBS_FOR_BASE =
70endif
71ifeq ($(MONOLITHIC),1)
72EXTRALIBS_FOR_BASE =
73endif
b17c1746
DE
74ifeq ($(BUILD),debug)
75__OPTIMIZEFLAG_2 = -O0
264af224
VS
76endif
77ifeq ($(BUILD),release)
b17c1746 78__OPTIMIZEFLAG_2 = -O2
264af224 79endif
8c9f8f91
JS
80ifeq ($(USE_RTTI),0)
81__RTTIFLAG_5 = -fno-rtti
264af224 82endif
8c9f8f91
JS
83ifeq ($(USE_RTTI),1)
84__RTTIFLAG_5 =
264af224 85endif
b17c1746 86ifeq ($(USE_EXCEPTIONS),0)
8c9f8f91 87__EXCEPTIONSFLAG_6 = -fno-exceptions
b17c1746
DE
88endif
89ifeq ($(USE_EXCEPTIONS),1)
8c9f8f91 90__EXCEPTIONSFLAG_6 =
b17c1746
DE
91endif
92ifeq ($(WXUNIV),1)
93__WXUNIV_DEFINE_p = -D__WXUNIVERSAL__
94endif
95ifeq ($(WXUNIV),1)
96__WXUNIV_DEFINE_p_1 = --define __WXUNIVERSAL__
264af224
VS
97endif
98ifeq ($(BUILD),debug)
99ifeq ($(DEBUG_FLAG),default)
100__DEBUG_DEFINE_p = -D__WXDEBUG__
101endif
102endif
103ifeq ($(DEBUG_FLAG),1)
104__DEBUG_DEFINE_p = -D__WXDEBUG__
105endif
106ifeq ($(BUILD),debug)
107ifeq ($(DEBUG_FLAG),default)
108__DEBUG_DEFINE_p_1 = --define __WXDEBUG__
109endif
110endif
111ifeq ($(DEBUG_FLAG),1)
112__DEBUG_DEFINE_p_1 = --define __WXDEBUG__
113endif
8c9f8f91
JS
114ifeq ($(USE_EXCEPTIONS),0)
115__EXCEPTIONS_DEFINE_p = -DwxNO_EXCEPTIONS
116endif
117ifeq ($(USE_EXCEPTIONS),0)
118__EXCEPTIONS_DEFINE_p_1 = --define wxNO_EXCEPTIONS
119endif
120ifeq ($(USE_RTTI),0)
121__RTTI_DEFINE_p = -DwxNO_RTTI
122endif
123ifeq ($(USE_RTTI),0)
124__RTTI_DEFINE_p_1 = --define wxNO_RTTI
125endif
126ifeq ($(USE_THREADS),0)
127__THREAD_DEFINE_p = -DwxNO_THREADS
128endif
129ifeq ($(USE_THREADS),0)
130__THREAD_DEFINE_p_1 = --define wxNO_THREADS
131endif
b17c1746
DE
132ifeq ($(UNICODE),1)
133__UNICODE_DEFINE_p = -D_UNICODE
134endif
135ifeq ($(UNICODE),1)
136__UNICODE_DEFINE_p_1 = --define _UNICODE
137endif
264af224
VS
138ifeq ($(SHARED),1)
139__DLLFLAG_p = -DWXUSINGDLL
140endif
141ifeq ($(SHARED),1)
142__DLLFLAG_p_1 = --define WXUSINGDLL
143endif
b17c1746
DE
144ifeq ($(MONOLITHIC),0)
145__WXLIB_CORE_p = \
c33fae85 146 -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)_core
a4ad36cd 147endif
b17c1746 148ifeq ($(MONOLITHIC),0)
c33fae85
RN
149__WXLIB_BASE_p = \
150 -lwxbase$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
a4ad36cd 151endif
b17c1746
DE
152ifeq ($(MONOLITHIC),1)
153__WXLIB_MONO_p = \
c33fae85 154 -lwx$(PORTNAME)$(WXUNIVNAME)$(WX_RELEASE_NODOT)$(WXUNICODEFLAG)$(WXDEBUGFLAG)$(WX_LIB_FLAVOUR)
a4ad36cd 155endif
b17c1746 156ifeq ($(USE_GUI),1)
9c2d002b 157__LIB_TIFF_p = -lwxtiff$(WXDEBUGFLAG)
a4ad36cd 158endif
264af224 159ifeq ($(USE_GUI),1)
9c2d002b 160__LIB_JPEG_p = -lwxjpeg$(WXDEBUGFLAG)
264af224
VS
161endif
162ifeq ($(USE_GUI),1)
9c2d002b 163__LIB_PNG_p = -lwxpng$(WXDEBUGFLAG)
264af224 164endif
b17c1746
DE
165ifeq ($(MSLU),1)
166__UNICOWS_LIB_p = -lunicows
264af224 167endif
b17c1746
DE
168ifeq ($(BUILD),debug)
169ifeq ($(DEBUG_INFO),default)
170__DEBUGINFO = -g
4e209a20 171endif
264af224 172endif
b17c1746
DE
173ifeq ($(BUILD),release)
174ifeq ($(DEBUG_INFO),default)
175__DEBUGINFO =
264af224 176endif
264af224 177endif
b17c1746
DE
178ifeq ($(DEBUG_INFO),0)
179__DEBUGINFO =
264af224 180endif
b17c1746
DE
181ifeq ($(DEBUG_INFO),1)
182__DEBUGINFO = -g
264af224 183endif
8c9f8f91
JS
184ifeq ($(USE_THREADS),0)
185__THREADSFLAG =
186endif
187ifeq ($(USE_THREADS),1)
188__THREADSFLAG = -mthreads
189endif
264af224
VS
190
191
192all: $(OBJS)
193$(OBJS):
194 -if not exist $(OBJS) mkdir $(OBJS)
195
196### Targets: ###
197
198all: $(OBJS)\life.exe data
199
b17c1746
DE
200clean:
201 -if exist $(OBJS)\*.o del $(OBJS)\*.o
202 -if exist $(OBJS)\life.exe del $(OBJS)\life.exe
203
204$(OBJS)\life.exe: $(LIFE_OBJECTS) $(OBJS)\life_life_rc.o
8c9f8f91 205 $(CXX) -o $@ $(LIFE_OBJECTS) $(LDFLAGS) $(__DEBUGINFO) $(__THREADSFLAG) -L$(LIBDIRNAME) -Wl,--subsystem,windows -mwindows $(__WXLIB_CORE_p) $(__WXLIB_BASE_p) $(__WXLIB_MONO_p) $(__LIB_TIFF_p) $(__LIB_JPEG_p) $(__LIB_PNG_p) -lwxzlib$(WXDEBUGFLAG) -lwxregex$(WXUNICODEFLAG)$(WXDEBUGFLAG) -lwxexpat$(WXDEBUGFLAG) $(EXTRALIBS_FOR_BASE) $(__UNICOWS_LIB_p) -lkernel32 -luser32 -lgdi32 -lcomdlg32 -lwinspool -lwinmm -lshell32 -lcomctl32 -lole32 -loleaut32 -luuid -lrpcrt4 -ladvapi32 -lwsock32 -lodbc32
b17c1746
DE
206
207data:
208 if not exist $(OBJS) mkdir $(OBJS)
209 for %%f in (breeder.lif) do if not exist $(OBJS)\%%f copy .\%%f $(OBJS)
210
211$(OBJS)\life_life.o: ./life.cpp
212 $(CXX) -c -o $@ $(LIFE_CXXFLAGS) $<
213
1c3a6972 214$(OBJS)\life_dialogs.o: ./dialogs.cpp
264af224
VS
215 $(CXX) -c -o $@ $(LIFE_CXXFLAGS) $<
216
1c3a6972 217$(OBJS)\life_game.o: ./game.cpp
264af224
VS
218 $(CXX) -c -o $@ $(LIFE_CXXFLAGS) $<
219
b17c1746 220$(OBJS)\life_reader.o: ./reader.cpp
264af224
VS
221 $(CXX) -c -o $@ $(LIFE_CXXFLAGS) $<
222
1c3a6972 223$(OBJS)\life_life_rc.o: ./life.rc
8c9f8f91 224 windres --use-temp-file -i$< -o$@ --define __WXMSW__ $(__WXUNIV_DEFINE_p_1) $(__DEBUG_DEFINE_p_1) $(__EXCEPTIONS_DEFINE_p_1) $(__RTTI_DEFINE_p_1) $(__THREAD_DEFINE_p_1) $(__UNICODE_DEFINE_p_1) --include-dir ./../../include --include-dir $(SETUPHDIR) --include-dir . $(__DLLFLAG_p_1) --include-dir ./../../samples --define NOPCH
264af224 225
fd9f42b6 226.PHONY: all clean data
d3d0b8db 227
8c9f8f91 228