mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
40e6dccb43
Original commit message from CVS: merged back from build branch let's hope you all agree
26 lines
1.1 KiB
Makefile
26 lines
1.1 KiB
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libgststaticautoplug.la libgststaticautoplugrender.la \
|
|
libgstautoplugcache.la libgstautoplugger.la
|
|
|
|
libgststaticautoplug_la_SOURCES = gststaticautoplug.c
|
|
libgststaticautoplugrender_la_SOURCES = gststaticautoplugrender.c
|
|
libgstautoplugcache_la_SOURCES = gstautoplugcache.c
|
|
libgstautoplugger_la_SOURCES = gstautoplugger.c
|
|
|
|
libgststaticautoplug_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
libgststaticautoplugrender_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
libgstautoplugcache_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
libgstautoplugger_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
|
|
libgststaticautoplug_la_CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
|
libgststaticautoplugrender_la_CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
|
libgstautoplugcache_la_CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
|
libgstautoplugger_la_CFLAGS = $(GLIB_CFLAGS) $(XML_CFLAGS) $(GST_CFLAGS)
|
|
|
|
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h
|
|
|
|
noinst_PROGRAMS = autoplugtest
|
|
|
|
autoplugtest_CFLAGS = $(GST_CFLAGS)
|
|
autoplugtest_LDADD = $(GST_LIBS)
|