Files
scummvm/mixer/module.mk
T
Pawel Kolodziejski 407aee486d - initial support for configure based on scummvm tree (tested mac os x leopard, linux(ubuntu), cygwin with mingwin gcc)
- adopted more common dir code from scummvm for easier multi platform support
- synced some changes from scummvm code
2008-06-12 12:08:15 +00:00

19 lines
230 B
Makefile

MODULE := mixer
MODULE_OBJS := \
audiostream.o \
mixer.o \
rate.o
ifndef USE_ARM_SOUND_ASM
MODULE_OBJS += \
rate.o
else
MODULE_OBJS += \
rate_arm.o \
rate_arm_asm.o
endif
# Include common rules
include $(srcdir)/rules.mk