mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 04:41:16 +00:00
abe3e58b1b
Original commit message from CVS: * gst/real/Makefile.am: Fix build (add LIBS and CFLAGS for gst-plugins-base stuff).
19 lines
415 B
Makefile
19 lines
415 B
Makefile
plugin_LTLIBRARIES = libgstreal.la
|
|
|
|
libgstreal_la_SOURCES = \
|
|
gstrealvideodec.c \
|
|
gstrealaudiodec.c \
|
|
gstreal.c
|
|
|
|
libgstreal_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstreal_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS)
|
|
libgstreal_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstrealvideodec.h \
|
|
gstrealaudiodec.h
|