mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +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.
8 lines
283 B
Makefile
8 lines
283 B
Makefile
plugin_LTLIBRARIES = libgstlibvisual.la
|
|
|
|
libgstlibvisual_la_SOURCES = visual.c
|
|
libgstlibvisual_la_CFLAGS = $(GST_CFLAGS) $(LIBVISUAL_CFLAGS)
|
|
libgstlibvisual_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstlibvisual_la_LIBADD = \
|
|
libgstbytestream-$(GST_MAJORMINOR).la \
|
|
$(LIBVISUAL_LIBS)
|