gstreamer/ext/srtp/Makefile.am
Olivier Crête 4eb960d6c3 srtp: Add SRTP plugin based on libsrtp
In large part the work of Gabriel Millaire
2013-03-12 20:01:50 -04:00

33 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