gst-gmyth/multiqueue/Makefile.am
author morphbr
Wed Sep 12 16:47:02 2007 +0100 (2007-09-12)
branchtrunk
changeset 841 25fb81d23ef5
permissions -rw-r--r--
[svn r847] - Fixed several bugs
- Included some help functions
     1 plugin_LTLIBRARIES = libgstmultiqueue.la
     2 
     3 libgstmultiqueue_la_SOURCES =	\
     4 	gstmultiqueue.c \
     5 	gstdataqueue.c
     6 
     7 libgstmultiqueue_la_CFLAGS = \
     8 	$(GST_CFLAGS) \
     9 	$(GST_BASE_CFLAGS) \
    10 	$(GST_PLUGINS_BASE_CFLAGS)
    11 
    12 libgstmultiqueue_la_LIBADD = \
    13 	$(GST_LIBS_LIBS)
    14 
    15 libgstmultiqueue_la_LDFLAGS = \
    16 	$(GST_LIBS) \
    17 	$(GST_PLUGIN_LDFLAGS) \
    18 	$(GST_BASE_LIBS) \
    19 	$(GST_PLUGINS_BASE_LIBS)
    20 
    21 noinst_HEADERS = \
    22 	gstmultiqueue.h \
    23 	gstdataqueue.h
    24