mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 19:31:12 +00:00
a79a53fc89
Original commit message from CVS: * gst/modplug/libmodplug/Makefile.am: * gst/modplug/libmodplug/load_it.cpp: Try that again (not only should it be MODPLUG_ instead of MODFILE, also that define is already set in stdafx.h; what we really need is some more #ifndefs).
40 lines
1.6 KiB
Makefile
40 lines
1.6 KiB
Makefile
noinst_LTLIBRARIES = libmodplug.la
|
|
|
|
libmodplug_la_CXXFLAGS = $(GST_CFLAGS) -D_REENTRANT
|
|
libmodplug_la_LDFLAGS = -module -avoid-version
|
|
libmodplug_la_SOURCES = tables.cpp \
|
|
sndmix.cpp \
|
|
sndfile.cpp \
|
|
snd_fx.cpp \
|
|
snd_flt.cpp \
|
|
snd_dsp.cpp \
|
|
fastmix.cpp \
|
|
mmcmp.cpp \
|
|
load_xm.cpp \
|
|
load_wav.cpp \
|
|
load_umx.cpp \
|
|
load_ult.cpp \
|
|
load_stm.cpp \
|
|
load_s3m.cpp \
|
|
load_ptm.cpp \
|
|
load_okt.cpp \
|
|
load_mtm.cpp \
|
|
load_mod.cpp \
|
|
load_med.cpp \
|
|
load_mdl.cpp \
|
|
load_it.cpp \
|
|
load_far.cpp \
|
|
load_dsm.cpp \
|
|
load_dmf.cpp \
|
|
load_dbm.cpp \
|
|
load_ams.cpp \
|
|
load_amf.cpp \
|
|
load_669.cpp \
|
|
load_j2b.cpp \
|
|
load_mt2.cpp \
|
|
load_psm.cpp \
|
|
modplug.cpp
|
|
|
|
noinst_HEADERS = it_defs.h stdafx.h sndfile.h modplug.h
|
|
|
|
EXTRA_DIST = changes.txt
|