mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 00:01:23 +00:00
a31a3800b6
Original commit message from CVS: Link plugins against libraries: * ext/alsa/Makefile.am: * gst/tcp/Makefile.am: Remove asm code that should be in liboil * gst/videoscale/Makefile.am: * gst/videoscale/videoscale_x86_asm.s: gettext wants these checked in: * po/af.po: * po/az.po: * po/cs.po: * po/en_GB.po: * po/hu.po: * po/it.po: * po/nb.po: * po/nl.po: * po/or.po: * po/sq.po: * po/sr.po: * po/sv.po: * po/uk.po: * po/vi.po:
50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
plugin_LTLIBRARIES = libgsttcp.la
|
|
|
|
# variables used for enum/marshal generation
|
|
glib_enum_headers = gsttcp.h
|
|
glib_enum_define = GST_TCP
|
|
glib_enum_prefix = gst_tcp
|
|
|
|
include $(top_srcdir)/common/glib-gen.mak
|
|
|
|
built_sources = gsttcp-enumtypes.c gsttcp-marshal.c
|
|
built_headers = gsttcp-enumtypes.h gsttcp-marshal.h
|
|
|
|
BUILT_SOURCES = $(built_sources) $(built_headers)
|
|
|
|
libgsttcp_la_SOURCES = \
|
|
gsttcpplugin.c \
|
|
gsttcpsrc.c gsttcpsink.c \
|
|
gsttcp.c \
|
|
gstfdset.c \
|
|
gstmultifdsink.c \
|
|
gsttcpclientsrc.c gsttcpclientsink.c \
|
|
gsttcpserversrc.c gsttcpserversink.c
|
|
|
|
nodist_libgsttcp_la_SOURCES = \
|
|
$(built_sources)
|
|
|
|
# remove ENABLE_NEW when dataprotocol is stable
|
|
libgsttcp_la_CFLAGS = $(GST_CFLAGS) -DGST_ENABLE_NEW
|
|
libgsttcp_la_LIBADD =
|
|
libgsttcp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gsttcpplugin.h \
|
|
gsttcpsrc.h gsttcpsink.h \
|
|
gsttcp.h \
|
|
gstfdset.h \
|
|
gstmultifdsink.h \
|
|
gsttcpclientsrc.h gsttcpclientsink.h \
|
|
gsttcpserversrc.h gsttcpserversink.h
|
|
|
|
CLEANFILES = $(BUILT_SOURCES)
|
|
|
|
EXTRA_DIST = gsttcp-marshal.list
|
|
|
|
noinst_PROGRAMS = fdsetstress
|
|
|
|
fdsetstress_SOURCES = fdsetstress.c gstfdset.c
|
|
fdsetstress_CFLAGS = $(GST_CFLAGS) $(GTK_CFLAGS)
|
|
fdsetstress_LDFLAGS = $(GST_LIBS) $(GTK_LIBS)
|
|
|