mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +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.
14 lines
520 B
Makefile
14 lines
520 B
Makefile
#plugin_LTLIBRARIES = libgstaudioscale.la
|
|
noinst_LTLIBRARIES = libgstresample.la
|
|
|
|
#libgstaudioscale_la_SOURCES = gstaudioscale.c
|
|
#libgstaudioscale_la_CFLAGS = $(GST_CFLAGS)
|
|
#libgstaudioscale_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
#libgstaudioscale_la_LIBADD = $(GST_LIBS)
|
|
|
|
noinst_HEADERS = gstaudioscale.h private.h
|
|
|
|
libgstresample_la_SOURCES = dtos.c dtof.c functable.c resample.c resample.h
|
|
libgstresample_la_LIBADD = $(GST_LIBS)
|
|
libgstresample_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstresample_la_CFLAGS = $(GST_CFLAGS)
|