1
0

25 lines
696 B
Makefile
Raw Normal View History

APP_PLATFORM := ${APP_PLATFORM}
APP_ABI := ${TARGET_ABI}
2020-09-04 20:04:28 +02:00
APP_STL := c++_static
APP_SHORT_COMMANDS := true
2020-09-04 20:04:28 +02:00
APP_MODULES := MultiCraft
ifdef NDEBUG
APP_CFLAGS := -Ofast -fvisibility=hidden -fvisibility-inlines-hidden -Wno-extra-tokens -D__FILE__=__FILE_NAME__ -Wno-builtin-macro-redefined
2022-01-27 00:26:37 +01:00
else
APP_CFLAGS := -g -D_DEBUG -O1 -fno-omit-frame-pointer
endif
APP_CFLAGS += -fexceptions
APP_CXXFLAGS := $(APP_CFLAGS) -frtti -std=gnu++17 #-Werror=shorten-64-to-32
2020-09-04 20:04:28 +02:00
# Silence Irrlicht warnings. Comment out with real debugging!
APP_CXXFLAGS += -Wno-deprecated-declarations -Wno-inconsistent-missing-override
APP_CPPFLAGS := $(APP_CXXFLAGS)
2020-09-04 20:04:28 +02:00
ifdef NDEBUG
APP_LDFLAGS := -Wl,--gc-sections,--icf=all
endif