mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
c49cdd59ff
Fix order, fix variables that don't exist, like GST_LIBS_LIBS, use $(LIBM) instead of -lm, and move _LIBS from LDFLAGS to LIBADD. Spotted by Havard Graff.
9 lines
258 B
Makefile
9 lines
258 B
Makefile
plugin_LTLIBRARIES = libgstvalve.la
|
|
|
|
libgstvalve_la_SOURCES = gstvalve.c gstvalve.h
|
|
|
|
libgstvalve_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstvalve_la_LIBADD = $(GST_LIBS)
|
|
libgstvalve_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstvalve_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|