mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
0f1d754932
Original commit message from CVS: s/@GST_PLUGIN_LDFLAGS@/$(GST_PLUGIN_LDFLAGS)/ @-substitued variables variables are defined as make variables automagically, and this gives the user the freedom to say make GST_PLUGIN_LDFLAGS=-myflag
12 lines
283 B
Makefile
12 lines
283 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstlevel.la
|
|
|
|
libgstlevel_la_SOURCES = gstlevel.c
|
|
libgstlevel_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstlevel_la_LIBADD = $(GST_LIBS)
|
|
libgstlevel_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstlevel.h filter.func
|
|
|
|
EXTRA_DIST = README
|