mirror of
https://github.com/scummvm/scummvm.git
synced 2026-06-20 05:45:29 +00:00
407aee486d
- adopted more common dir code from scummvm for easier multi platform support - synced some changes from scummvm code
19 lines
230 B
Makefile
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
|