13 lines
346 B
Makefile
13 lines
346 B
Makefile
# If SDL_Mixer should link to libMAD
|
|
SDL_MIXER_USE_LIBMAD :=
|
|
ifneq ($(strip $(filter mad, $(COMPILED_LIBRARIES))),)
|
|
SDL_MIXER_USE_LIBMAD := 1
|
|
endif
|
|
|
|
ifneq ($(findstring -crystax,$(TARGET_CC)),)
|
|
$(info Building with CrystaX toolchain - RTTI and exceptions enabled, STLPort disabled)
|
|
CRYSTAX_TOOLCHAIN=1
|
|
endif
|
|
|
|
include $(call all-subdir-makefiles)
|