1# $Id: Makefile.am,v 1.1.1.3 2013/05/31 07:51:36 mrg Exp $
2# 
3#  Copyright 2005  Red Hat, Inc.
4# 
5#  Permission to use, copy, modify, distribute, and sell this software and its
6#  documentation for any purpose is hereby granted without fee, provided that
7#  the above copyright notice appear in all copies and that both that
8#  copyright notice and this permission notice appear in supporting
9#  documentation, and that the name of Red Hat not be used in
10#  advertising or publicity pertaining to distribution of the software without
11#  specific, written prior permission.  Red Hat makes no
12#  representations about the suitability of this software for any purpose.  It
13#  is provided "as is" without express or implied warranty.
14# 
15#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
16#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
17#  EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
18#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
19#  DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
20#  TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
21#  PERFORMANCE OF THIS SOFTWARE.
22
23SUBDIRS = man
24bin_PROGRAMS = xvidtune
25
26AM_CFLAGS = $(CWARNFLAGS) $(XVIDTUNE_CFLAGS)
27xvidtune_LDADD = $(XVIDTUNE_LIBS)
28
29xvidtune_SOURCES =	\
30        xvidtune.c
31
32# App default files
33DISTCHECK_CONFIGURE_FLAGS = --with-appdefaultdir=\$${datadir}/X11/app-defaults
34
35appdefaultdir = @appdefaultdir@
36
37dist_appdefault_DATA = app-defaults/Xvidtune
38
39MAINTAINERCLEANFILES = ChangeLog INSTALL
40
41.PHONY: ChangeLog INSTALL
42
43INSTALL:
44	$(INSTALL_CMD)
45
46ChangeLog:
47	$(CHANGELOG_CMD)
48
49dist-hook: ChangeLog INSTALL
50