mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
c90f75526a
Original commit message from CVS: * ext/theora/Makefile.am: * ext/vorbis/Makefile.am: * gst-libs/gst/tag/Makefile.am: * gst-plugins-base.spec.in: Rename libgsttagedit to libgsttag (#322117).
15 lines
531 B
Makefile
15 lines
531 B
Makefile
plugin_LTLIBRARIES = libgstvorbis.la
|
|
|
|
libgstvorbis_la_SOURCES = vorbis.c \
|
|
vorbisdec.c vorbisenc.c vorbisparse.c
|
|
libgstvorbis_la_CFLAGS = $(GST_CFLAGS) $(VORBIS_CFLAGS)
|
|
|
|
## AM_PATH_VORBIS also sets VORBISENC_LIBS
|
|
libgstvorbis_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
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)
|
|
|
|
noinst_HEADERS = vorbisenc.h vorbisdec.h vorbisparse.h
|