mythtv_plugin/Makefile.am
author leo_sobral
Wed Sep 20 23:59:48 2006 +0100 (2006-09-20)
branchtrunk
changeset 2 bd3829c2e9c9
permissions -rwxr-xr-x
[svn r3] imported to sf repository
     1 plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
     2 
     3 plugin_LTLIBRARIES =	libgstmythtvsrc.la
     4 
     5 libgstmythtvsrc_la_SOURCES =	\
     6 		gstmythtvsrc.c \
     7 		myth_uri.c \
     8 		myth_file_transfer.c \
     9 		myth_livetv.c
    10 
    11 libgstmythtvsrc_la_CFLAGS = \
    12 	$(GST_CFLAGS) \
    13 	$(GMYTH_CFLAGS)
    14 
    15 libgstmythtvsrc_la_LDFLAGS = \
    16 	$(GST_PLUGIN_LDFLAGS)
    17 
    18 libgstmythtvsrc_la_LIBADD = \
    19 	$(GST_BASE_LIBS) \
    20 	$(GMYTH_LIBS)
    21 
    22 noinst_HEADERS = \
    23 	gstmythtvsrc.h \
    24 	myth_uri.h \
    25 	myth_file_transfer.h \
    26 	myth_livetv.h
    27