Advertisement
Guest User

Untitled

a guest
May 28th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 0.66 KB | None | 0 0
  1. plugin_LTLIBRARIES = libgstxmf.la
  2.  
  3. libgstxmf_la_SOURCES = plugin.c \
  4.                                              vlq-reader.c \
  5.                                              gstxmfdemux.c \
  6.                                              vlq-writer.c \
  7.                                              gstxmfmux.c \
  8.                                              mux-node.c
  9.  
  10. libgstxmf_la_CFLAGS = $(GST_CFLAGS) \
  11.                                             $(GST_PLUGINS_BASE_CFLAGS) \
  12.                                             $(GST_BASE_CFLAGS)
  13.  
  14. libgstxmf_la_LIBADD = $(GST_LIBS)
  15.                                             $(GST_BASE_LIBS) \
  16.                                             $(GST_PLUGINS_BASE_LIBS)
  17.  
  18. libgstxmf_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
  19. libgstxmf_la_LIBTOOLFLAGS = --tag=disable-static
  20.  
  21. noinst_HEADERS = gstxmfdemux.h \
  22.                                  gstxmfmux.h \
  23.                                  vlq-reader.h \
  24.                                  vlq-writer.h \
  25.                                  xmf-types.h \
  26.                                  mux-node.h
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement