mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 00:31:13 +00:00
1ea0574af4
Original commit message from CVS: make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be added manually to each Makefile.am so we are sure it goes *last* and doesn't add -L flags before linking in libs of our own, like, say, internal .la libs, that then accidentally pick up the installed copy.
9 lines
329 B
Makefile
9 lines
329 B
Makefile
plugin_LTLIBRARIES = libgsttheora.la
|
|
|
|
libgsttheora_la_SOURCES = theora.c theoraenc.c theoradec.c
|
|
libgsttheora_la_CFLAGS = $(GST_CFLAGS) $(THEORA_CFLAGS)
|
|
libgsttheora_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgsttheora_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/tag/libgsttagedit-@GST_MAJORMINOR@.la \
|
|
$(GST_LIBS) \
|
|
$(THEORA_LIBS)
|