mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
34 lines
806 B
Makefile
34 lines
806 B
Makefile
|
plugin_LTLIBRARIES = libgstsrtp.la
|
||
|
|
||
|
libgstsrtp_la_SOURCES = \
|
||
|
gstsrtp.c \
|
||
|
gstsrtp.h \
|
||
|
gstsrtpdec.c \
|
||
|
gstsrtpdec.h \
|
||
|
gstsrtpenc.c \
|
||
|
gstsrtpenc.h \
|
||
|
gstsrtp-enumtypes.c \
|
||
|
gstsrtp-enumtypes.h
|
||
|
|
||
|
libgstsrtp_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(SRTP_CFLAGS)
|
||
|
libgstsrtp_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
||
|
-lgstrtp-@GST_API_VERSION@ \
|
||
|
$(GST_LIBS) \
|
||
|
$(SRTP_LIBS)
|
||
|
libgstsrtp_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||
|
libgstsrtp_la_LIBTOOLFLAGS = --tag=disable-static
|
||
|
|
||
|
srtp_headers = \
|
||
|
gstsrtpdec.h \
|
||
|
gstsrtpenc.h
|
||
|
|
||
|
glib_enum_headers=$(srtp_headers)
|
||
|
glib_enum_define=GST_SRTP
|
||
|
glib_gen_prefix=gst_srtp
|
||
|
glib_gen_basename=gstsrtp
|
||
|
|
||
|
BUILT_SOURCES = gstsrtp-enumtypes.c gstsrtp-enumtypes.h
|
||
|
CLEANFILES = $(BUILT_SOURCES)
|
||
|
|
||
|
include $(top_srcdir)/common/gst-glib-gen.mak
|