mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
0dc999da00
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
22 lines
592 B
Makefile
22 lines
592 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstspectrum.la
|
|
|
|
libgstspectrum_la_SOURCES = gstspectrum.c fix_fft.c
|
|
libgstspectrum_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstspectrum_la_LIBADD = $(GST_LIBS)
|
|
libgstspectrum_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstspectrum.h
|
|
|
|
## this thing needs gnome too, so unless someone checks for it, let's
|
|
## comment it out.
|
|
## if HAVE_GTK
|
|
## noinst_PROGRAMS = demo-osssrc
|
|
## endif
|
|
|
|
## demo_osssrc_SOURCES = demo-osssrc.c
|
|
## demo_osssrc_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
## demo_osssrc_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
|
|
|
|
EXTRA_DIST = README
|