mirror of
https://github.com/DrBeef/RTCWQuest.git
synced 2025-03-01 06:41:08 +00:00
20 lines
515 B
Makefile
20 lines
515 B
Makefile
|
|
||
|
|
||
|
RTCW_BASE_CFLAGS = \
|
||
|
-fsigned-char \
|
||
|
-march=armv7-a -mfloat-abi=softfp \
|
||
|
-DNDEBUG -DNDEBUG -Ofast -fomit-frame-pointer -ffast-math -fno-strict-aliasing -fstrength-reduce -ftree-vectorize -fsingle-precision-constant \
|
||
|
-pipe -DPANDORA -DHAVE_GLES -DARM -DC_ONLY \
|
||
|
-DAUTOAIM
|
||
|
|
||
|
#-DNEON -mfpu=neon
|
||
|
|
||
|
RTCW_BASE_LDFLAGS = \
|
||
|
-Wl,--fix-cortex-a8 -llog
|
||
|
|
||
|
include $(TOP_DIR)/rtcw/Android_game.mk
|
||
|
include $(TOP_DIR)/rtcw/Android_ui.mk
|
||
|
include $(TOP_DIR)/rtcw/Android_cgame.mk
|
||
|
include $(TOP_DIR)/rtcw/Android_client.mk
|
||
|
|