mirror of
https://github.com/scummvm/scummvm.git
synced 2025-04-02 10:52:32 -04:00
When configuration flags are changed (ASan enabling for example), force rebuild the MT32 objects. They were not rebuild because not depending on config.h
37 lines
770 B
Makefile
37 lines
770 B
Makefile
MODULE := audio/softsynth/mt32
|
|
|
|
MODULE_OBJS := \
|
|
Analog.o \
|
|
BReverbModel.o \
|
|
Display.o \
|
|
File.o \
|
|
FileStream.o \
|
|
LA32FloatWaveGenerator.o \
|
|
LA32Ramp.o \
|
|
LA32WaveGenerator.o \
|
|
MidiStreamParser.o \
|
|
Part.o \
|
|
Partial.o \
|
|
PartialManager.o \
|
|
Poly.o \
|
|
ROMInfo.o \
|
|
Synth.o \
|
|
Tables.o \
|
|
TVA.o \
|
|
TVF.o \
|
|
TVP.o \
|
|
sha1/sha1.o \
|
|
c_interface/c_interface.o \
|
|
srchelper/InternalResampler.o \
|
|
srchelper/srctools/src/FIRResampler.o \
|
|
srchelper/srctools/src/IIR2xResampler.o \
|
|
srchelper/srctools/src/LinearResampler.o \
|
|
srchelper/srctools/src/ResamplerModel.o \
|
|
srchelper/srctools/src/SincResampler.o \
|
|
SampleRateConverter.o
|
|
|
|
# Include common rules
|
|
include $(srcdir)/rules.mk
|
|
|
|
# Force rebuild when configuration changed
|
|
$(MODULE_OBJS-$(MODULE)): %.o: config.mk
|