mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
c8e931574e
Mostly just add $(GST_BASE_CFLAGS) where they're missing and fix the order a bit here and there (see docs/random/moving-plugins).
13 lines
665 B
Makefile
13 lines
665 B
Makefile
plugin_LTLIBRARIES = libgstasf.la
|
|
|
|
libgstasf_la_SOURCES = gstasfdemux.c gstasf.c asfheaders.c asfpacket.c gstrtpasfdepay.c gstrtspwms.c
|
|
libgstasf_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstasf_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@ -lgstrtsp-@GST_MAJORMINOR@ -lgstsdp-@GST_MAJORMINOR@ \
|
|
-lgstrtp-@GST_MAJORMINOR@ -lgstaudio-@GST_MAJORMINOR@ -lgsttag-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) \
|
|
$(WIN32_LIBS)
|
|
libgstasf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstasf_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstasfdemux.h asfheaders.h asfpacket.h gstrtpasfdepay.h gstrtspwms.h
|