~ubuntu-branches/ubuntu/maverick/tvtime/maverick

« back to all changes in this revision

Viewing changes to plugins/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Simon Law
  • Date: 2004-01-13 18:00:36 UTC
  • Revision ID: james.westby@ubuntu.com-20040113180036-h996q67t476jymsu
Tags: upstream-0.9.12
ImportĀ upstreamĀ versionĀ 0.9.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# plugins/Makefile.am distributes the plugins that come with tvtime.
 
2
# Copyright (C) 2002, 2003  Billy Biggs
 
3
#
 
4
# This program is free software; you can redistribute it and/or modify
 
5
# it under the terms of the GNU General Public License as published by
 
6
# the Free Software Foundation; either version 2 of the License, or (at
 
7
# your option) any later version.
 
8
#
 
9
# This program is distributed in the hope that it will be useful, but
 
10
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
# General Public License for more details.
 
13
#
 
14
# You should have received a copy of the GNU General Public License
 
15
# along with this program; if not, write to the Free Software
 
16
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
17
 
 
18
TVTIME_CFLAGS = -I$(top_srcdir)/src
 
19
OPT_CFLAGS = -Wall -I. -pedantic
 
20
 
 
21
AM_CFLAGS = $(TVTIME_CFLAGS) $(OPT_CFLAGS)
 
22
 
 
23
if ARCH_X86
 
24
DSCALER_SRCS = dscaler_greedyh.c dscaler_tomsmocomp.c
 
25
else
 
26
DSCALER_SRCS = 
 
27
endif
 
28
 
 
29
noinst_LTLIBRARIES = libtvtimeplugins.la
 
30
libtvtimeplugins_la_SOURCES = plugins.h linear.c weavetff.c \
 
31
        weavebff.c double.c linearblend.c scalerbob.c greedy.c \
 
32
        vfir.c $(DSCALER_SRCS)
 
33
libtvtimeplugins_la_LDFLAGS = -static
 
34