mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +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.
11 lines
345 B
Makefile
11 lines
345 B
Makefile
plugin_LTLIBRARIES = libgstvideotestsrc.la
|
|
|
|
libgstvideotestsrc_la_SOURCES = \
|
|
gstvideotestsrc.c \
|
|
videotestsrc.c
|
|
|
|
libgstvideotestsrc_la_CFLAGS = $(GST_CFLAGS) $(LIBOIL_CFLAGS)
|
|
libgstvideotestsrc_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvideotestsrc_la_LIBADD = $(GST_LIBS) $(LIBOIL_LIBS)
|
|
|
|
noinst_HEADERS = gstvideotestsrc.h videotestsrc.h
|