gst-gmyth/mythsrc/Makefile.am
author melunko
Mon Oct 08 19:35:09 2007 +0100 (2007-10-08)
branchtrunk
changeset 860 bb5592a9ac48
parent 852 2498e4f8c758
permissions -rwxr-xr-x
[svn r866] Fixed gst-gmyth Makefile to get source from gstreamer cvs
renatofilho@608
     1
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
renatofilho@608
     2
renatofilho@608
     3
plugin_LTLIBRARIES =	libgstmythtvsrc.la
renatofilho@608
     4
renatofilho@608
     5
libgstmythtvsrc_la_SOURCES =	\
renatofilho@839
     6
	gstmythtvsrc.c \
renatofilho@839
     7
	gstmythtvsrc.h
renatofilho@608
     8
renatofilho@608
     9
libgstmythtvsrc_la_CFLAGS = \
renatofilho@608
    10
	$(GST_CFLAGS) \
renatofilho@608
    11
	$(GST_BASE_CFLAGS) \
renatofilho@608
    12
	$(GMYTH_CFLAGS)
renatofilho@608
    13
renatofilho@608
    14
libgstmythtvsrc_la_LDFLAGS = \
renatofilho@608
    15
	$(GST_PLUGIN_LDFLAGS)
renatofilho@608
    16
renatofilho@608
    17
libgstmythtvsrc_la_LIBADD = \
renatofilho@608
    18
	$(GST_LIBS) \
renatofilho@608
    19
	$(GST_BASE_LIBS) \
renatofilho@608
    20
	$(GMYTH_LIBS)
renatofilho@608
    21
melunko@842
    22
gstmythtvsrc.c: gstmythtvsrc.h
renatofilho@839
    23
	cvs -d:pserver:anoncvs@anoncvs.freedesktop.org:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.c
renatofilho@839
    24
	mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.c .
melunko@860
    25
melunko@860
    26
gstmythtvsrc.h:
renatofilho@839
    27
	cvs -d:pserver:anoncvs@anoncvs.freedesktop.org:/cvs/gstreamer/ co gst-plugins-bad/ext/mythtv/gstmythtvsrc.h
renatofilho@839
    28
	mv gst-plugins-bad/ext/mythtv/gstmythtvsrc.h .
renatofilho@839
    29
renatofilho@608
    30
noinst_HEADERS = \
renatofilho@608
    31
	gstmythtvsrc.h
renatofilho@608
    32
renatofilho@840
    33
CLEANFILES = \
renatofilho@840
    34
	$(libgstmythtvsrc_la_SOURCES)