mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +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
23 lines
619 B
Makefile
23 lines
619 B
Makefile
# FIXME : tests need fixing
|
|
testprogs = static # dynamic linked loading registry static2
|
|
# filterdir = $(libdir)/gst
|
|
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
LIBS = $(GST_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
|
|
|
libtestplugin_la_SOURCES = testplugin.c
|
|
libtestplugin_la_CFLAGS = $(GST_CFLAGS)
|
|
libtestplugin_la_LIBS = $(GST_LIBS)
|
|
libtestplugin2_la_SOURCES = testplugin2.c
|
|
libtestplugin2_la_CFLAGS = $(GST_CFLAGS)
|
|
libtestplugin2_la_LIBS = $(GST_LIBS)
|
|
|
|
# linked_LDFLAGS = -L. -ltestplugin -ltestplugin2
|
|
|
|
static_SOURCES = static.c testplugin_s.c testplugin2_s.c
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|