mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 12:21:30 +00:00
33 lines
812 B
Makefile
33 lines
812 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 = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
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
|