1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
|
# Makefile generated by XPJ for ANDROID16
-include Makefile.custom
ProjectName = SnippetMBP
SnippetMBP_cppfiles += ./../../SnippetCommon/ClassicMain.cpp
SnippetMBP_cppfiles += ./../../SnippetMBP/SnippetMBP.cpp
SnippetMBP_cppfiles += ./../../SnippetMBP/SnippetMBPRender.cpp
SnippetMBP_cpp_debug_dep = $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.P, $(SnippetMBP_cppfiles)))))
SnippetMBP_cc_debug_dep = $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.debug.P, $(SnippetMBP_ccfiles)))))
SnippetMBP_c_debug_dep = $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.P, $(SnippetMBP_cfiles)))))
SnippetMBP_debug_dep = $(SnippetMBP_cpp_debug_dep) $(SnippetMBP_cc_debug_dep) $(SnippetMBP_c_debug_dep)
-include $(SnippetMBP_debug_dep)
SnippetMBP_cpp_checked_dep = $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.P, $(SnippetMBP_cppfiles)))))
SnippetMBP_cc_checked_dep = $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.checked.P, $(SnippetMBP_ccfiles)))))
SnippetMBP_c_checked_dep = $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.P, $(SnippetMBP_cfiles)))))
SnippetMBP_checked_dep = $(SnippetMBP_cpp_checked_dep) $(SnippetMBP_cc_checked_dep) $(SnippetMBP_c_checked_dep)
-include $(SnippetMBP_checked_dep)
SnippetMBP_cpp_profile_dep = $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.P, $(SnippetMBP_cppfiles)))))
SnippetMBP_cc_profile_dep = $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.profile.P, $(SnippetMBP_ccfiles)))))
SnippetMBP_c_profile_dep = $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.P, $(SnippetMBP_cfiles)))))
SnippetMBP_profile_dep = $(SnippetMBP_cpp_profile_dep) $(SnippetMBP_cc_profile_dep) $(SnippetMBP_c_profile_dep)
-include $(SnippetMBP_profile_dep)
SnippetMBP_cpp_release_dep = $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.P, $(SnippetMBP_cppfiles)))))
SnippetMBP_cc_release_dep = $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.release.P, $(SnippetMBP_ccfiles)))))
SnippetMBP_c_release_dep = $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.P, $(SnippetMBP_cfiles)))))
SnippetMBP_release_dep = $(SnippetMBP_cpp_release_dep) $(SnippetMBP_cc_release_dep) $(SnippetMBP_c_release_dep)
-include $(SnippetMBP_release_dep)
SnippetMBP_debug_hpaths :=
SnippetMBP_debug_hpaths += ./../../../Include
SnippetMBP_debug_hpaths += ./../../../../PxShared/include
SnippetMBP_debug_hpaths += ./../../../../PxShared/src/foundation/include
SnippetMBP_debug_hpaths += ./../../../../PxShared/src/fastxml/include
SnippetMBP_debug_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/include
SnippetMBP_debug_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include
SnippetMBP_debug_lpaths :=
SnippetMBP_debug_lpaths += ./../../../../Externals/nvToolsExt/1/lib/armv7
SnippetMBP_debug_lpaths += ./../../../Lib/android16
SnippetMBP_debug_lpaths += ./../../lib/android16
SnippetMBP_debug_lpaths += ./../../../../PxShared/lib/android16
SnippetMBP_debug_lpaths += ./../../lib/android16
SnippetMBP_debug_defines := $(SnippetMBP_custom_defines)
SnippetMBP_debug_defines += ANDROID
SnippetMBP_debug_defines += GLES2
SnippetMBP_debug_defines += __STDC_LIMIT_MACROS
SnippetMBP_debug_defines += __ARM_ARCH_5__
SnippetMBP_debug_defines += __ARM_ARCH_5T__
SnippetMBP_debug_defines += __ARM_ARCH_5E__
SnippetMBP_debug_defines += __ARM_ARCH_5TE__
SnippetMBP_debug_defines += _DEBUG
SnippetMBP_debug_defines += PX_DEBUG=1
SnippetMBP_debug_defines += PX_CHECKED=1
SnippetMBP_debug_defines += PX_SUPPORT_PVD=1
SnippetMBP_debug_defines += PX_NVTX=1
SnippetMBP_debug_defines += PHYSX_PROFILE_SDK
SnippetMBP_debug_libraries :=
SnippetMBP_debug_libraries += SnippetUtilsDEBUG
SnippetMBP_debug_libraries += log
SnippetMBP_debug_libraries += gnustl_static
SnippetMBP_debug_libraries += supc++
SnippetMBP_debug_libraries += m
SnippetMBP_debug_libraries += c
SnippetMBP_debug_libraries += nvToolsExt
SnippetMBP_debug_libraries += PhysX3CommonDEBUG
SnippetMBP_debug_libraries += PhysX3DEBUG
SnippetMBP_debug_libraries += PhysX3VehicleDEBUG
SnippetMBP_debug_libraries += PhysX3CookingDEBUG
SnippetMBP_debug_libraries += PhysX3ExtensionsDEBUG
SnippetMBP_debug_libraries += PhysX3CharacterKinematicDEBUG
SnippetMBP_debug_libraries += SnippetUtilsDEBUG
SnippetMBP_debug_libraries += PxFoundationDEBUG
SnippetMBP_debug_libraries += PsFastXmlDEBUG
SnippetMBP_debug_libraries += PxPvdSDKDEBUG
SnippetMBP_debug_common_cflags := $(SnippetMBP_custom_cflags)
SnippetMBP_debug_common_cflags += -MMD
SnippetMBP_debug_common_cflags += $(addprefix -D, $(SnippetMBP_debug_defines))
SnippetMBP_debug_common_cflags += $(addprefix -I, $(SnippetMBP_debug_hpaths))
SnippetMBP_debug_common_cflags += -Werror
SnippetMBP_debug_common_cflags += -fpic -fno-exceptions
SnippetMBP_debug_common_cflags += -isysroot ../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_debug_common_cflags += -march=armv7-a -mfpu=neon -marm -mfloat-abi=softfp -mthumb-interwork
SnippetMBP_debug_common_cflags += -Wall -Wextra -Wpedantic -Wstrict-aliasing=2
SnippetMBP_debug_common_cflags += -Wno-maybe-uninitialized
SnippetMBP_debug_common_cflags += -Wno-pedantic
SnippetMBP_debug_common_cflags += -fPIE
SnippetMBP_debug_common_cflags += -g3 -gdwarf-2
SnippetMBP_debug_cflags := $(SnippetMBP_debug_common_cflags)
SnippetMBP_debug_cppflags := $(SnippetMBP_debug_common_cflags)
SnippetMBP_debug_cppflags += -fno-rtti
SnippetMBP_debug_lflags := $(SnippetMBP_custom_lflags)
SnippetMBP_debug_lflags += $(addprefix -L, $(SnippetMBP_debug_lpaths))
SnippetMBP_debug_lflags += -Wl,--start-group $(addprefix -l, $(SnippetMBP_debug_libraries)) -Wl,--end-group
SnippetMBP_debug_lflags += --sysroot=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_debug_lflags += -Wl,--no-undefined
SnippetMBP_debug_lflags += -Wl,-z,noexecstack -L../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a -Wl,-rpath-link=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm/usr/lib
SnippetMBP_debug_lflags += -pie
SnippetMBP_debug_objsdir = $(OBJS_DIR)/SnippetMBP_debug
SnippetMBP_debug_cpp_o = $(addprefix $(SnippetMBP_debug_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.o, $(SnippetMBP_cppfiles)))))
SnippetMBP_debug_cc_o = $(addprefix $(SnippetMBP_debug_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.o, $(SnippetMBP_ccfiles)))))
SnippetMBP_debug_c_o = $(addprefix $(SnippetMBP_debug_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.o, $(SnippetMBP_cfiles)))))
SnippetMBP_debug_obj = $(SnippetMBP_debug_cpp_o) $(SnippetMBP_debug_cc_o) $(SnippetMBP_debug_c_o)
SnippetMBP_debug_bin := ./../../../Bin/android16/SnippetMBPDEBUG
clean_SnippetMBP_debug:
@$(ECHO) clean SnippetMBP debug
@$(RMDIR) $(SnippetMBP_debug_objsdir)
@$(RMDIR) $(SnippetMBP_debug_bin)
@$(RMDIR) $(DEPSDIR)/SnippetMBP/debug
build_SnippetMBP_debug: postbuild_SnippetMBP_debug
postbuild_SnippetMBP_debug: mainbuild_SnippetMBP_debug
mainbuild_SnippetMBP_debug: prebuild_SnippetMBP_debug $(SnippetMBP_debug_bin)
prebuild_SnippetMBP_debug:
$(SnippetMBP_debug_bin): $(SnippetMBP_debug_obj) build_SnippetUtils_debug
mkdir -p `dirname ./../../../Bin/android16/SnippetMBPDEBUG`
$(CCLD) $(SnippetMBP_debug_obj) $(SnippetMBP_debug_lflags) -o $(SnippetMBP_debug_bin)
$(ECHO) building $@ complete!
SnippetMBP_debug_DEPDIR = $(dir $(@))/$(*F)
$(SnippetMBP_debug_cpp_o): $(SnippetMBP_debug_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling debug $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cppfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_debug_cppflags) -c $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cppfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cppfiles))))))
cp $(SnippetMBP_debug_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_debug_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
rm -f $(SnippetMBP_debug_DEPDIR).d
$(SnippetMBP_debug_cc_o): $(SnippetMBP_debug_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling debug $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_ccfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_debug_cppflags) -c $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_ccfiles)) -o $@
mkdir -p $(dir $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_ccfiles))))))
cp $(SnippetMBP_debug_DEPDIR).d $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_ccfiles))))).debug.P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_debug_DEPDIR).d >> $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_ccfiles))))).debug.P; \
rm -f $(SnippetMBP_debug_DEPDIR).d
$(SnippetMBP_debug_c_o): $(SnippetMBP_debug_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling debug $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cfiles))...
mkdir -p $(dir $(@))
$(CC) $(SnippetMBP_debug_cflags) -c $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cfiles))))))
cp $(SnippetMBP_debug_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_debug_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/debug/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_debug_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
rm -f $(SnippetMBP_debug_DEPDIR).d
SnippetMBP_checked_hpaths :=
SnippetMBP_checked_hpaths += ./../../../Include
SnippetMBP_checked_hpaths += ./../../../../PxShared/include
SnippetMBP_checked_hpaths += ./../../../../PxShared/src/foundation/include
SnippetMBP_checked_hpaths += ./../../../../PxShared/src/fastxml/include
SnippetMBP_checked_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/include
SnippetMBP_checked_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include
SnippetMBP_checked_lpaths :=
SnippetMBP_checked_lpaths += ./../../../../Externals/nvToolsExt/1/lib/armv7
SnippetMBP_checked_lpaths += ./../../../Lib/android16
SnippetMBP_checked_lpaths += ./../../lib/android16
SnippetMBP_checked_lpaths += ./../../../../PxShared/lib/android16
SnippetMBP_checked_lpaths += ./../../lib/android16
SnippetMBP_checked_defines := $(SnippetMBP_custom_defines)
SnippetMBP_checked_defines += ANDROID
SnippetMBP_checked_defines += GLES2
SnippetMBP_checked_defines += __STDC_LIMIT_MACROS
SnippetMBP_checked_defines += __ARM_ARCH_5__
SnippetMBP_checked_defines += __ARM_ARCH_5T__
SnippetMBP_checked_defines += __ARM_ARCH_5E__
SnippetMBP_checked_defines += __ARM_ARCH_5TE__
SnippetMBP_checked_defines += NDEBUG
SnippetMBP_checked_defines += PX_CHECKED=1
SnippetMBP_checked_defines += PX_SUPPORT_PVD=1
SnippetMBP_checked_defines += PX_NVTX=1
SnippetMBP_checked_defines += PHYSX_PROFILE_SDK
SnippetMBP_checked_libraries :=
SnippetMBP_checked_libraries += SnippetUtilsCHECKED
SnippetMBP_checked_libraries += log
SnippetMBP_checked_libraries += gnustl_static
SnippetMBP_checked_libraries += supc++
SnippetMBP_checked_libraries += m
SnippetMBP_checked_libraries += c
SnippetMBP_checked_libraries += nvToolsExt
SnippetMBP_checked_libraries += PhysX3CommonCHECKED
SnippetMBP_checked_libraries += PhysX3CHECKED
SnippetMBP_checked_libraries += PhysX3VehicleCHECKED
SnippetMBP_checked_libraries += PhysX3CookingCHECKED
SnippetMBP_checked_libraries += PhysX3ExtensionsCHECKED
SnippetMBP_checked_libraries += PhysX3CharacterKinematicCHECKED
SnippetMBP_checked_libraries += SnippetUtilsCHECKED
SnippetMBP_checked_libraries += PxFoundationCHECKED
SnippetMBP_checked_libraries += PsFastXmlCHECKED
SnippetMBP_checked_libraries += PxPvdSDKCHECKED
SnippetMBP_checked_common_cflags := $(SnippetMBP_custom_cflags)
SnippetMBP_checked_common_cflags += -MMD
SnippetMBP_checked_common_cflags += $(addprefix -D, $(SnippetMBP_checked_defines))
SnippetMBP_checked_common_cflags += $(addprefix -I, $(SnippetMBP_checked_hpaths))
SnippetMBP_checked_common_cflags += -Werror
SnippetMBP_checked_common_cflags += -fpic -fno-exceptions
SnippetMBP_checked_common_cflags += -isysroot ../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_checked_common_cflags += -march=armv7-a -mfpu=neon -marm -mfloat-abi=softfp -mthumb-interwork
SnippetMBP_checked_common_cflags += -Wall -Wextra -Wpedantic -Wstrict-aliasing=2
SnippetMBP_checked_common_cflags += -Wno-maybe-uninitialized
SnippetMBP_checked_common_cflags += -Wno-pedantic
SnippetMBP_checked_common_cflags += -fPIE
SnippetMBP_checked_common_cflags += -g3 -gdwarf-2 -O3 -fno-strict-aliasing
SnippetMBP_checked_common_cflags += -ffunction-sections -funwind-tables -fstack-protector
SnippetMBP_checked_common_cflags += -fomit-frame-pointer -funswitch-loops -finline-limit=300
SnippetMBP_checked_cflags := $(SnippetMBP_checked_common_cflags)
SnippetMBP_checked_cppflags := $(SnippetMBP_checked_common_cflags)
SnippetMBP_checked_cppflags += -fno-rtti
SnippetMBP_checked_lflags := $(SnippetMBP_custom_lflags)
SnippetMBP_checked_lflags += $(addprefix -L, $(SnippetMBP_checked_lpaths))
SnippetMBP_checked_lflags += -Wl,--start-group $(addprefix -l, $(SnippetMBP_checked_libraries)) -Wl,--end-group
SnippetMBP_checked_lflags += --sysroot=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_checked_lflags += -Wl,--no-undefined
SnippetMBP_checked_lflags += -Wl,-z,noexecstack -L../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a -Wl,-rpath-link=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm/usr/lib
SnippetMBP_checked_lflags += -pie
SnippetMBP_checked_objsdir = $(OBJS_DIR)/SnippetMBP_checked
SnippetMBP_checked_cpp_o = $(addprefix $(SnippetMBP_checked_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.o, $(SnippetMBP_cppfiles)))))
SnippetMBP_checked_cc_o = $(addprefix $(SnippetMBP_checked_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.o, $(SnippetMBP_ccfiles)))))
SnippetMBP_checked_c_o = $(addprefix $(SnippetMBP_checked_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.o, $(SnippetMBP_cfiles)))))
SnippetMBP_checked_obj = $(SnippetMBP_checked_cpp_o) $(SnippetMBP_checked_cc_o) $(SnippetMBP_checked_c_o)
SnippetMBP_checked_bin := ./../../../Bin/android16/SnippetMBPCHECKED
clean_SnippetMBP_checked:
@$(ECHO) clean SnippetMBP checked
@$(RMDIR) $(SnippetMBP_checked_objsdir)
@$(RMDIR) $(SnippetMBP_checked_bin)
@$(RMDIR) $(DEPSDIR)/SnippetMBP/checked
build_SnippetMBP_checked: postbuild_SnippetMBP_checked
postbuild_SnippetMBP_checked: mainbuild_SnippetMBP_checked
mainbuild_SnippetMBP_checked: prebuild_SnippetMBP_checked $(SnippetMBP_checked_bin)
prebuild_SnippetMBP_checked:
$(SnippetMBP_checked_bin): $(SnippetMBP_checked_obj) build_SnippetUtils_checked
mkdir -p `dirname ./../../../Bin/android16/SnippetMBPCHECKED`
$(CCLD) $(SnippetMBP_checked_obj) $(SnippetMBP_checked_lflags) -o $(SnippetMBP_checked_bin)
$(ECHO) building $@ complete!
SnippetMBP_checked_DEPDIR = $(dir $(@))/$(*F)
$(SnippetMBP_checked_cpp_o): $(SnippetMBP_checked_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling checked $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cppfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_checked_cppflags) -c $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cppfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cppfiles))))))
cp $(SnippetMBP_checked_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_checked_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
rm -f $(SnippetMBP_checked_DEPDIR).d
$(SnippetMBP_checked_cc_o): $(SnippetMBP_checked_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling checked $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_ccfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_checked_cppflags) -c $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_ccfiles)) -o $@
mkdir -p $(dir $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_ccfiles))))))
cp $(SnippetMBP_checked_DEPDIR).d $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_ccfiles))))).checked.P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_checked_DEPDIR).d >> $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_ccfiles))))).checked.P; \
rm -f $(SnippetMBP_checked_DEPDIR).d
$(SnippetMBP_checked_c_o): $(SnippetMBP_checked_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling checked $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cfiles))...
mkdir -p $(dir $(@))
$(CC) $(SnippetMBP_checked_cflags) -c $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cfiles))))))
cp $(SnippetMBP_checked_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_checked_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/checked/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_checked_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
rm -f $(SnippetMBP_checked_DEPDIR).d
SnippetMBP_profile_hpaths :=
SnippetMBP_profile_hpaths += ./../../../Include
SnippetMBP_profile_hpaths += ./../../../../PxShared/include
SnippetMBP_profile_hpaths += ./../../../../PxShared/src/foundation/include
SnippetMBP_profile_hpaths += ./../../../../PxShared/src/fastxml/include
SnippetMBP_profile_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/include
SnippetMBP_profile_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include
SnippetMBP_profile_lpaths :=
SnippetMBP_profile_lpaths += ./../../../../Externals/nvToolsExt/1/lib/armv7
SnippetMBP_profile_lpaths += ./../../../Lib/android16
SnippetMBP_profile_lpaths += ./../../lib/android16
SnippetMBP_profile_lpaths += ./../../../../PxShared/lib/android16
SnippetMBP_profile_lpaths += ./../../lib/android16
SnippetMBP_profile_defines := $(SnippetMBP_custom_defines)
SnippetMBP_profile_defines += ANDROID
SnippetMBP_profile_defines += GLES2
SnippetMBP_profile_defines += __STDC_LIMIT_MACROS
SnippetMBP_profile_defines += __ARM_ARCH_5__
SnippetMBP_profile_defines += __ARM_ARCH_5T__
SnippetMBP_profile_defines += __ARM_ARCH_5E__
SnippetMBP_profile_defines += __ARM_ARCH_5TE__
SnippetMBP_profile_defines += NDEBUG
SnippetMBP_profile_defines += PX_PROFILE=1
SnippetMBP_profile_defines += PX_SUPPORT_PVD=1
SnippetMBP_profile_defines += PX_NVTX=1
SnippetMBP_profile_defines += PHYSX_PROFILE_SDK
SnippetMBP_profile_libraries :=
SnippetMBP_profile_libraries += SnippetUtilsPROFILE
SnippetMBP_profile_libraries += log
SnippetMBP_profile_libraries += gnustl_static
SnippetMBP_profile_libraries += supc++
SnippetMBP_profile_libraries += m
SnippetMBP_profile_libraries += c
SnippetMBP_profile_libraries += nvToolsExt
SnippetMBP_profile_libraries += PhysX3CommonPROFILE
SnippetMBP_profile_libraries += PhysX3PROFILE
SnippetMBP_profile_libraries += PhysX3VehiclePROFILE
SnippetMBP_profile_libraries += PhysX3CookingPROFILE
SnippetMBP_profile_libraries += PhysX3ExtensionsPROFILE
SnippetMBP_profile_libraries += PhysX3CharacterKinematicPROFILE
SnippetMBP_profile_libraries += SnippetUtilsPROFILE
SnippetMBP_profile_libraries += PxFoundationPROFILE
SnippetMBP_profile_libraries += PsFastXmlPROFILE
SnippetMBP_profile_libraries += PxPvdSDKPROFILE
SnippetMBP_profile_common_cflags := $(SnippetMBP_custom_cflags)
SnippetMBP_profile_common_cflags += -MMD
SnippetMBP_profile_common_cflags += $(addprefix -D, $(SnippetMBP_profile_defines))
SnippetMBP_profile_common_cflags += $(addprefix -I, $(SnippetMBP_profile_hpaths))
SnippetMBP_profile_common_cflags += -Werror
SnippetMBP_profile_common_cflags += -fpic -fno-exceptions
SnippetMBP_profile_common_cflags += -isysroot ../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_profile_common_cflags += -march=armv7-a -mfpu=neon -marm -mfloat-abi=softfp -mthumb-interwork
SnippetMBP_profile_common_cflags += -Wall -Wextra -Wpedantic -Wstrict-aliasing=2
SnippetMBP_profile_common_cflags += -Wno-maybe-uninitialized
SnippetMBP_profile_common_cflags += -Wno-pedantic
SnippetMBP_profile_common_cflags += -fPIE
SnippetMBP_profile_common_cflags += -O3 -fno-strict-aliasing
SnippetMBP_profile_common_cflags += -ffunction-sections -funwind-tables -fstack-protector
SnippetMBP_profile_common_cflags += -fno-omit-frame-pointer -funswitch-loops -finline-limit=300
SnippetMBP_profile_cflags := $(SnippetMBP_profile_common_cflags)
SnippetMBP_profile_cppflags := $(SnippetMBP_profile_common_cflags)
SnippetMBP_profile_cppflags += -fno-rtti
SnippetMBP_profile_lflags := $(SnippetMBP_custom_lflags)
SnippetMBP_profile_lflags += $(addprefix -L, $(SnippetMBP_profile_lpaths))
SnippetMBP_profile_lflags += -Wl,--start-group $(addprefix -l, $(SnippetMBP_profile_libraries)) -Wl,--end-group
SnippetMBP_profile_lflags += --sysroot=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_profile_lflags += -Wl,--no-undefined
SnippetMBP_profile_lflags += -Wl,-z,noexecstack -L../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a -Wl,-rpath-link=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm/usr/lib
SnippetMBP_profile_lflags += -pie
SnippetMBP_profile_objsdir = $(OBJS_DIR)/SnippetMBP_profile
SnippetMBP_profile_cpp_o = $(addprefix $(SnippetMBP_profile_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.o, $(SnippetMBP_cppfiles)))))
SnippetMBP_profile_cc_o = $(addprefix $(SnippetMBP_profile_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.o, $(SnippetMBP_ccfiles)))))
SnippetMBP_profile_c_o = $(addprefix $(SnippetMBP_profile_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.o, $(SnippetMBP_cfiles)))))
SnippetMBP_profile_obj = $(SnippetMBP_profile_cpp_o) $(SnippetMBP_profile_cc_o) $(SnippetMBP_profile_c_o)
SnippetMBP_profile_bin := ./../../../Bin/android16/SnippetMBPPROFILE
clean_SnippetMBP_profile:
@$(ECHO) clean SnippetMBP profile
@$(RMDIR) $(SnippetMBP_profile_objsdir)
@$(RMDIR) $(SnippetMBP_profile_bin)
@$(RMDIR) $(DEPSDIR)/SnippetMBP/profile
build_SnippetMBP_profile: postbuild_SnippetMBP_profile
postbuild_SnippetMBP_profile: mainbuild_SnippetMBP_profile
mainbuild_SnippetMBP_profile: prebuild_SnippetMBP_profile $(SnippetMBP_profile_bin)
prebuild_SnippetMBP_profile:
$(SnippetMBP_profile_bin): $(SnippetMBP_profile_obj) build_SnippetUtils_profile
mkdir -p `dirname ./../../../Bin/android16/SnippetMBPPROFILE`
$(CCLD) $(SnippetMBP_profile_obj) $(SnippetMBP_profile_lflags) -o $(SnippetMBP_profile_bin)
$(ECHO) building $@ complete!
SnippetMBP_profile_DEPDIR = $(dir $(@))/$(*F)
$(SnippetMBP_profile_cpp_o): $(SnippetMBP_profile_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling profile $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cppfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_profile_cppflags) -c $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cppfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cppfiles))))))
cp $(SnippetMBP_profile_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_profile_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
rm -f $(SnippetMBP_profile_DEPDIR).d
$(SnippetMBP_profile_cc_o): $(SnippetMBP_profile_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling profile $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_ccfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_profile_cppflags) -c $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_ccfiles)) -o $@
mkdir -p $(dir $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_ccfiles))))))
cp $(SnippetMBP_profile_DEPDIR).d $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_ccfiles))))).profile.P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_profile_DEPDIR).d >> $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_ccfiles))))).profile.P; \
rm -f $(SnippetMBP_profile_DEPDIR).d
$(SnippetMBP_profile_c_o): $(SnippetMBP_profile_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling profile $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cfiles))...
mkdir -p $(dir $(@))
$(CC) $(SnippetMBP_profile_cflags) -c $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cfiles))))))
cp $(SnippetMBP_profile_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_profile_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/profile/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_profile_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
rm -f $(SnippetMBP_profile_DEPDIR).d
SnippetMBP_release_hpaths :=
SnippetMBP_release_hpaths += ./../../../Include
SnippetMBP_release_hpaths += ./../../../../PxShared/include
SnippetMBP_release_hpaths += ./../../../../PxShared/src/foundation/include
SnippetMBP_release_hpaths += ./../../../../PxShared/src/fastxml/include
SnippetMBP_release_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/include
SnippetMBP_release_hpaths += ./../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a/include
SnippetMBP_release_lpaths :=
SnippetMBP_release_lpaths += ./../../../../Externals/nvToolsExt/1/lib/armv7
SnippetMBP_release_lpaths += ./../../../Lib/android16
SnippetMBP_release_lpaths += ./../../lib/android16
SnippetMBP_release_lpaths += ./../../../../PxShared/lib/android16
SnippetMBP_release_lpaths += ./../../lib/android16
SnippetMBP_release_defines := $(SnippetMBP_custom_defines)
SnippetMBP_release_defines += ANDROID
SnippetMBP_release_defines += GLES2
SnippetMBP_release_defines += __STDC_LIMIT_MACROS
SnippetMBP_release_defines += __ARM_ARCH_5__
SnippetMBP_release_defines += __ARM_ARCH_5T__
SnippetMBP_release_defines += __ARM_ARCH_5E__
SnippetMBP_release_defines += __ARM_ARCH_5TE__
SnippetMBP_release_defines += NDEBUG
SnippetMBP_release_defines += PX_SUPPORT_PVD=0
SnippetMBP_release_defines += PHYSX_PROFILE_SDK
SnippetMBP_release_libraries :=
SnippetMBP_release_libraries += SnippetUtils
SnippetMBP_release_libraries += log
SnippetMBP_release_libraries += gnustl_static
SnippetMBP_release_libraries += supc++
SnippetMBP_release_libraries += m
SnippetMBP_release_libraries += c
SnippetMBP_release_libraries += nvToolsExt
SnippetMBP_release_libraries += PhysX3Common
SnippetMBP_release_libraries += PhysX3
SnippetMBP_release_libraries += PhysX3Vehicle
SnippetMBP_release_libraries += PhysX3Cooking
SnippetMBP_release_libraries += PhysX3Extensions
SnippetMBP_release_libraries += PhysX3CharacterKinematic
SnippetMBP_release_libraries += SnippetUtils
SnippetMBP_release_libraries += PxFoundation
SnippetMBP_release_libraries += PsFastXml
SnippetMBP_release_libraries += PxPvdSDK
SnippetMBP_release_common_cflags := $(SnippetMBP_custom_cflags)
SnippetMBP_release_common_cflags += -MMD
SnippetMBP_release_common_cflags += $(addprefix -D, $(SnippetMBP_release_defines))
SnippetMBP_release_common_cflags += $(addprefix -I, $(SnippetMBP_release_hpaths))
SnippetMBP_release_common_cflags += -Werror
SnippetMBP_release_common_cflags += -fpic -fno-exceptions
SnippetMBP_release_common_cflags += -isysroot ../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_release_common_cflags += -march=armv7-a -mfpu=neon -marm -mfloat-abi=softfp -mthumb-interwork
SnippetMBP_release_common_cflags += -Wall -Wextra -Wpedantic -Wstrict-aliasing=2
SnippetMBP_release_common_cflags += -Wno-maybe-uninitialized
SnippetMBP_release_common_cflags += -Wno-pedantic
SnippetMBP_release_common_cflags += -fPIE
SnippetMBP_release_common_cflags += -O3 -fno-strict-aliasing
SnippetMBP_release_common_cflags += -ffunction-sections -funwind-tables -fstack-protector
SnippetMBP_release_common_cflags += -fomit-frame-pointer -funswitch-loops -finline-limit=300
SnippetMBP_release_cflags := $(SnippetMBP_release_common_cflags)
SnippetMBP_release_cppflags := $(SnippetMBP_release_common_cflags)
SnippetMBP_release_cppflags += -fno-rtti
SnippetMBP_release_lflags := $(SnippetMBP_custom_lflags)
SnippetMBP_release_lflags += $(addprefix -L, $(SnippetMBP_release_lpaths))
SnippetMBP_release_lflags += -Wl,--start-group $(addprefix -l, $(SnippetMBP_release_libraries)) -Wl,--end-group
SnippetMBP_release_lflags += --sysroot=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm
SnippetMBP_release_lflags += -Wl,--no-undefined
SnippetMBP_release_lflags += -Wl,-z,noexecstack -L../../../../Externals/android-ndk-r9d/sources/cxx-stl/gnu-libstdc++/4.8/libs/armeabi-v7a -Wl,-rpath-link=../../../../Externals/android-ndk-r9d/platforms/android-16/arch-arm/usr/lib
SnippetMBP_release_lflags += -pie
SnippetMBP_release_objsdir = $(OBJS_DIR)/SnippetMBP_release
SnippetMBP_release_cpp_o = $(addprefix $(SnippetMBP_release_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cpp, %.cpp.o, $(SnippetMBP_cppfiles)))))
SnippetMBP_release_cc_o = $(addprefix $(SnippetMBP_release_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.cc, %.cc.o, $(SnippetMBP_ccfiles)))))
SnippetMBP_release_c_o = $(addprefix $(SnippetMBP_release_objsdir)/, $(subst ./, , $(subst ../, , $(patsubst %.c, %.c.o, $(SnippetMBP_cfiles)))))
SnippetMBP_release_obj = $(SnippetMBP_release_cpp_o) $(SnippetMBP_release_cc_o) $(SnippetMBP_release_c_o)
SnippetMBP_release_bin := ./../../../Bin/android16/SnippetMBP
clean_SnippetMBP_release:
@$(ECHO) clean SnippetMBP release
@$(RMDIR) $(SnippetMBP_release_objsdir)
@$(RMDIR) $(SnippetMBP_release_bin)
@$(RMDIR) $(DEPSDIR)/SnippetMBP/release
build_SnippetMBP_release: postbuild_SnippetMBP_release
postbuild_SnippetMBP_release: mainbuild_SnippetMBP_release
mainbuild_SnippetMBP_release: prebuild_SnippetMBP_release $(SnippetMBP_release_bin)
prebuild_SnippetMBP_release:
$(SnippetMBP_release_bin): $(SnippetMBP_release_obj) build_SnippetUtils_release
mkdir -p `dirname ./../../../Bin/android16/SnippetMBP`
$(CCLD) $(SnippetMBP_release_obj) $(SnippetMBP_release_lflags) -o $(SnippetMBP_release_bin)
$(ECHO) building $@ complete!
SnippetMBP_release_DEPDIR = $(dir $(@))/$(*F)
$(SnippetMBP_release_cpp_o): $(SnippetMBP_release_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling release $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cppfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_release_cppflags) -c $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cppfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cppfiles))))))
cp $(SnippetMBP_release_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_release_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cpp.o,.cpp, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cppfiles))))).P; \
rm -f $(SnippetMBP_release_DEPDIR).d
$(SnippetMBP_release_cc_o): $(SnippetMBP_release_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling release $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_ccfiles))...
mkdir -p $(dir $(@))
$(CXX) $(SnippetMBP_release_cppflags) -c $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_ccfiles)) -o $@
mkdir -p $(dir $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_ccfiles))))))
cp $(SnippetMBP_release_DEPDIR).d $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_ccfiles))))).release.P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_release_DEPDIR).d >> $(addprefix $(DEPSDIR)/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .cc.o,.cc, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_ccfiles))))).release.P; \
rm -f $(SnippetMBP_release_DEPDIR).d
$(SnippetMBP_release_c_o): $(SnippetMBP_release_objsdir)/%.o:
$(ECHO) SnippetMBP: compiling release $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cfiles))...
mkdir -p $(dir $(@))
$(CC) $(SnippetMBP_release_cflags) -c $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cfiles)) -o $@
@mkdir -p $(dir $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cfiles))))))
cp $(SnippetMBP_release_DEPDIR).d $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
sed -e 's/#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $(SnippetMBP_release_DEPDIR).d >> $(addprefix $(DEPSDIR)/SnippetMBP/release/, $(subst ./, , $(subst ../, , $(filter %$(strip $(subst .c.o,.c, $(subst $(SnippetMBP_release_objsdir),, $@))), $(SnippetMBP_cfiles))))).P; \
rm -f $(SnippetMBP_release_DEPDIR).d
clean_SnippetMBP: clean_SnippetMBP_debug clean_SnippetMBP_checked clean_SnippetMBP_profile clean_SnippetMBP_release
rm -rf $(DEPSDIR)
export VERBOSE
ifndef VERBOSE
.SILENT:
endif
|