mirror of
https://github.com/vgmstream/vgmstream.git
synced 2024-12-19 09:55:53 +01:00
32 lines
641 B
Makefile
32 lines
641 B
Makefile
## vgmstream autotools script
|
|
|
|
noinst_LTLIBRARIES = libmeta.la
|
|
|
|
AM_CFLAGS = -DVAR_ARRAYS -I$(top_builddir) -I$(top_srcdir) -I$(top_srcdir)/ext_includes/
|
|
AM_MAKEFLAGS=-f Makefile.autotools
|
|
|
|
# sources/headers are updated automatically by ./bootstrap script (not all headers are needed though)
|
|
libmeta_la_LDFLAGS =
|
|
libmeta_la_SOURCES = (auto-updated)
|
|
EXTRA_DIST = (auto-updated)
|
|
|
|
AM_CFLAGS += -DVGM_USE_G7221
|
|
|
|
if HAVE_VORBIS
|
|
if HAVE_VORBISFILE
|
|
AM_CFLAGS += -DVGM_USE_VORBIS
|
|
endif
|
|
endif
|
|
|
|
if HAVE_LIBMPG123
|
|
AM_CFLAGS += -DVGM_USE_MPEG
|
|
endif
|
|
|
|
if HAVE_LIBSPEEX
|
|
AM_CFLAGS += -DVGM_USE_SPEEX
|
|
endif
|
|
|
|
if HAVE_FFMPEG
|
|
AM_CFLAGS += -DVGM_USE_FFMPEG
|
|
endif
|