• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# plugindir is set in configure
2
3plugin_LTLIBRARIES = libgstasfmux.la
4
5# sources used to compile this plug-in
6libgstasfmux_la_SOURCES = gstasfmux.c \
7                          gstasfobjects.c \
8                          gstasfparse.c \
9                          gstrtpasfpay.c \
10                          gstasf.c
11
12# flags used to compile this plugin
13# add other _CFLAGS and _LIBS as needed
14libgstasfmux_la_CFLAGS = $(GST_PLUGINS_BAD_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
15libgstasfmux_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) \
16                         -lgstrtp-@GST_API_VERSION@
17libgstasfmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
18
19# headers we need but don't want installed
20noinst_HEADERS = gstasfmux.h \
21                 gstasfobjects.h \
22                 gstasfparse.h \
23                 gstrtpasfpay.h
24