mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-14 05:38:56 +00:00
805b21181a
o added configure option o mi2 intro doesn't freeze anymore and has no sound glitches o missing instruments in many titles are fixed o numerous memory overwrite bugs are fixed o code is cleaned a lot and splitted into many smaller files o mt32.cpp went to backends/midi o synced with upstream code o reverberation fixed * don't complain about File class wrapper :) * all custom types are back * #pragmas are to do * maybe some indentation is wrong too I prefer smaller commits, but this thing came in one piece. svn-id: r15715
27 lines
562 B
Makefile
27 lines
562 B
Makefile
MODULE := backends
|
|
|
|
MODULE_OBJS := \
|
|
backends/fs/posix/posix-fs.o \
|
|
backends/fs/morphos/abox-fs.o \
|
|
backends/fs/windows/windows-fs.o \
|
|
backends/midi/adlib.o \
|
|
backends/midi/coreaudio.o \
|
|
backends/midi/morphos.o \
|
|
backends/midi/null.o \
|
|
backends/midi/quicktime.o \
|
|
backends/midi/seq.o \
|
|
backends/midi/alsa.o \
|
|
backends/midi/windows.o \
|
|
backends/midi/ym2612.o \
|
|
backends/midi/mt32.o
|
|
|
|
MODULE_DIRS += \
|
|
backends \
|
|
backends/fs/posix \
|
|
backends/fs/morphos \
|
|
backends/fs/windows \
|
|
backends/midi
|
|
|
|
# Include common rules
|
|
include $(srcdir)/common.rules
|