mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
59c9b655e1
Original commit message from CVS: * ext/mad/Makefile.am: * gst/avi/Makefile.am: * gst/effectv/Makefile.am: * gst/udp/Makefile.am: * gst/wavparse/Makefile.am: Use -lgstfoo-@GST_MAJORMINOR@ instead of -lgstfoo-0.9
28 lines
869 B
Makefile
28 lines
869 B
Makefile
plugin_LTLIBRARIES = libgstudp.la
|
|
|
|
# variables used for enum/marshal generation
|
|
glib_enum_headers = gstudp.h
|
|
glib_enum_define = GST_UDP
|
|
glib_enum_prefix = gst_udp
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|
|
|
|
built_sources = gstudp-enumtypes.c gstudp-marshal.c
|
|
built_headers = gstudp-enumtypes.h gstudp-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
libgstudp_la_SOURCES = gstudp.c gstudpsrc.c gstudpsink.c gstmultiudpsink.c gstdynudpsink.c
|
|
libgstudp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstudp_la_LIBADD = $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstnet-@GST_MAJORMINOR@
|
|
libgstudp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
nodist_libgstudp_la_SOURCES = \
|
|
$(built_sources)
|
|
|
|
noinst_HEADERS = gstudpsink.h gstudpsrc.h gstudp.h gstmultiudpsink.h gstdynudpsink.h
|
|
|
|
EXTRA_DIST = README gstudp-marshal.list
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|