mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +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.
30 lines
710 B
Makefile
30 lines
710 B
Makefile
plugin_LTLIBRARIES = libgstalsa.la
|
|
|
|
libgstalsa_la_SOURCES = \
|
|
gstalsaplugin.c \
|
|
gstalsasink.c \
|
|
gstalsasrc.c
|
|
|
|
# port alsa stuff then add the _SOURCES above
|
|
EXTRA_DIST = \
|
|
gstalsamixer.c \
|
|
gstalsamixertrack.c \
|
|
gstalsamixeroptions.c \
|
|
gstalsa.c \
|
|
gstalsaclock.c
|
|
|
|
libgstalsa_la_CFLAGS = $(GST_CFLAGS) $(ALSA_CFLAGS)
|
|
libgstalsa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstalsa_la_LIBADD = \
|
|
$(ALSA_LIBS) \
|
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-@GST_MAJORMINOR@.la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstaudio-@GST_MAJORMINOR@.la
|
|
|
|
noinst_HEADERS = \
|
|
gstalsa.h \
|
|
gstalsaclock.h \
|
|
gstalsasink.h \
|
|
gstalsasrc.h \
|
|
gstalsamixer.h \
|
|
gstalsamixertrack.h \
|
|
gstalsamixeroptions.h
|