mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
8da28910bc
Original commit message from CVS: * s/filter/plugin/ * add $(GST_LIBS) to all plugins * move Makefile.am things around to a mostly standard layout * remove HTTP flags/libs from elements since http element moved
34 lines
1.2 KiB
Makefile
34 lines
1.2 KiB
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = \
|
|
libgststaticautoplug.la \
|
|
libgststaticautoplugrender.la \
|
|
libgstautoplugcache.la \
|
|
libgstautoplugger.la
|
|
|
|
libgststaticautoplug_la_SOURCES = gststaticautoplug.c
|
|
libgststaticautoplug_la_CFLAGS = $(GST_CFLAGS)
|
|
libgststaticautoplug_la_LIBADD = $(GST_LIBS)
|
|
libgststaticautoplug_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
|
|
libgststaticautoplugrender_la_SOURCES = gststaticautoplugrender.c
|
|
libgststaticautoplugrender_la_CFLAGS = $(GST_CFLAGS)
|
|
libgststaticautoplugrender_la_LIBADD = $(GST_LIBS)
|
|
libgststaticautoplugrender_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
|
|
libgstautoplugcache_la_SOURCES = gstautoplugcache.c
|
|
libgstautoplugcache_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstautoplugcache_la_LIBADD = $(GST_LIBS)
|
|
libgstautoplugcache_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
|
|
libgstautoplugger_la_SOURCES = gstautoplugger.c
|
|
libgstautoplugger_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstautoplugger_la_LIBADD = $(GST_LIBS)
|
|
libgstautoplugger_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
|
|
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h
|
|
|
|
noinst_PROGRAMS = autoplugtest
|
|
|
|
autoplugtest_CFLAGS = $(GST_CFLAGS)
|
|
autoplugtest_LDADD = $(GST_LIBS)
|