mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 07:16:55 +00:00
25 lines
750 B
Makefile
25 lines
750 B
Makefile
plugin_LTLIBRARIES = libgstvorbis.la
|
|
|
|
libgstvorbis_la_SOURCES = gstvorbis.c \
|
|
gstvorbisdec.c \
|
|
gstvorbisenc.c \
|
|
gstvorbisparse.c \
|
|
gstvorbistag.c \
|
|
gstvorbiscommon.c
|
|
|
|
libgstvorbis_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) $(VORBIS_CFLAGS)
|
|
## AM_PATH_VORBIS also sets VORBISENC_LIBS
|
|
libgstvorbis_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttag-@GST_MAJORMINOR@.la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) \
|
|
$(VORBIS_LIBS) $(VORBISENC_LIBS)
|
|
libgstvorbis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvorbis_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstvorbisenc.h \
|
|
gstvorbisdec.h \
|
|
gstvorbisparse.h \
|
|
gstvorbistag.h \
|
|
gstvorbiscommon.h
|
|
|