mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
f8f4620451
_BAD_CFLAGS should always come first, then GST_PLUGINS_BASE_CFLAGS, then GST_BASE_CFLAGS then GST_CFLAGS. Same for libs: first plugins base libs, then GST_BASE_LIB then GST_LIBS.
13 lines
469 B
Makefile
13 lines
469 B
Makefile
glib_enum_prefix = gst_shm
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|
|
|
|
plugin_LTLIBRARIES = libgstshm.la
|
|
|
|
libgstshm_la_SOURCES = shmpipe.c shmalloc.c gstshm.c gstshmsrc.c gstshmsink.c
|
|
libgstshm_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_CFLAGS) -DSHM_PIPE_USE_GLIB
|
|
libgstshm_la_LIBADD = -lrt
|
|
libgstshm_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(GST_BASE_LIBS)
|
|
libgstshm_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = gstshmsrc.h gstshmsink.h shmpipe.h shmalloc.h
|