mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 04:11:31 +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.
17 lines
390 B
Makefile
17 lines
390 B
Makefile
plugin_LTLIBRARIES = libgstgnomevfs.la
|
|
|
|
libgstgnomevfs_la_SOURCES = \
|
|
gstgnomevfs.c \
|
|
gstgnomevfssrc.c \
|
|
gstgnomevfsuri.c
|
|
|
|
EXTRA_DIST = \
|
|
gstgnomevfssink.c
|
|
|
|
libgstgnomevfs_la_CFLAGS = $(GST_CFLAGS) $(GNOME_VFS_CFLAGS)
|
|
libgstgnomevfs_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstgnomevfs_la_LIBADD = $(GNOME_VFS_LIBS) $(GST_BASE_LIBS)
|
|
|
|
noinst_HEADERS = \
|
|
gstgnomevfs.h \
|
|
gstgnomevfsuri.h
|