mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
aa63f65fc8
Original commit message from CVS: Update for new plugin API. static and static2 now fail
19 lines
521 B
Makefile
19 lines
521 B
Makefile
include ../Rules
|
|
|
|
plugin_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
|
|
|
tests_pass = dynamic linked loading registry
|
|
tests_fail = static static2
|
|
|
|
|
|
libtestplugin_la_SOURCES = testplugin.c
|
|
libtestplugin_la_CFLAGS = $(GST_CFLAGS)
|
|
libtestplugin_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libtestplugin2_la_SOURCES = testplugin2.c
|
|
libtestplugin2_la_CFLAGS = $(GST_CFLAGS)
|
|
libtestplugin2_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
linked_LIBS = libtestplugin.la libtestplugin2.la
|
|
|
|
static_SOURCES = static.c testplugin_s.c testplugin2_s.c
|
|
|