gst-gmyth/mythsrc/Makefile.am
author renatofilho
Mon Oct 08 19:17:47 2007 +0100 (2007-10-08)
branchtrunk
changeset 858 ebd3aaff20e0
parent 842 033a4a843332
child 860 bb5592a9ac48
permissions -rwxr-xr-x
[svn r864] fixed bug on uri without port
     1 plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
     2 
     3 plugin_LTLIBRARIES =	libgstmythtvsrc.la
     4 
     5 libgstmythtvsrc_la_SOURCES =	\
     6 	gstmythtvsrc.c \
     7 	gstmythtvsrc.h
     8 
     9 libgstmythtvsrc_la_CFLAGS = \
    10 	$(GST_CFLAGS) \
    11 	$(GST_BASE_CFLAGS) \
    12 	$(GMYTH_CFLAGS)
    13 
    14 libgstmythtvsrc_la_LDFLAGS = \
    15 	$(GST_PLUGIN_LDFLAGS)
    16 
    17 libgstmythtvsrc_la_LIBADD = \
    18 	$(GST_LIBS) \
    19 	$(GST_BASE_LIBS) \
    20 	$(GMYTH_LIBS)
    21 
    22 gstmythtvsrc.c: gstmythtvsrc.h
    23 	cvs -d:pserver:anoncvs@anoncvs.freedesktop.org:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.c
    24 	mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.c .
    25 	cvs -d:pserver:anoncvs@anoncvs.freedesktop.org:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.h
    26 	mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.h .
    27 
    28 noinst_HEADERS = \
    29 	gstmythtvsrc.h
    30 
    31 CLEANFILES = \
    32 	$(libgstmythtvsrc_la_SOURCES)