~ubuntu-branches/ubuntu/oneiric/texinfo/oneiric

« back to all changes in this revision

Viewing changes to install-info/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2009-03-09 15:50:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090309155003-3k9a07mt2jqnuudg
Tags: 4.13a.dfsg.1-1
* new upstream releases (Closes: #500301)
  - fix (wrongly) added leading spaces in direntries (Closes: #457741)
  -  work with ~ in th epath (Closes: #495577)
  - disable the patch fix-direntry and fix-texi2dvi-bashism, 
    included upstream
* update the list of files to be installed (new translations, pdftexi2dvi)
* mange version in the watch file to remove the .dfsg.N part
* use quilt.make (first step in direction of source format 3.0, but that
  is broken)
* add README.Debian to info package (Closes: #513187)
* add README.source, bump standards version to 3.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id: Makefile.am,v 1.1 2008/01/02 01:36:16 karl Exp $
 
2
# Makefile.am for texinfo/install-info.
 
3
# Run automake in .. to produce Makefile.in from this.
 
4
#
 
5
# This file is free software; as a special exception the author gives
 
6
# unlimited permission to copy and/or distribute it, with or without
 
7
# modifications, as long as this notice is preserved.
 
8
#
 
9
# This program is distributed in the hope that it will be useful, but
 
10
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
 
11
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
12
 
 
13
SUBDIRS = tests
 
14
bin_PROGRAMS = ginstall-info
 
15
 
 
16
# Use `ginstall-info' in the definition of PROGRAMS and in dependencies
 
17
# because automake generates an install-info target in every Makefile
 
18
# (this is easier than changing Automake.)
 
19
ginstall_info_SOURCES = install-info.c
 
20
 
 
21
# Transform `ginstall-info' to `install-info' before applying any
 
22
# user-specified name transformations.
 
23
transform = s/ginstall-info/install-info/; $(program_transform_name)
 
24
 
 
25
localedir = $(datadir)/locale
 
26
AM_CPPFLAGS =                                   \
 
27
  -I$(top_srcdir)                               \
 
28
  -I$(top_srcdir)/gnulib/lib                    \
 
29
  -I$(top_builddir)/gnulib/lib                  \
 
30
  -DLOCALEDIR=\"$(localedir)\"
 
31
LDADD = ../lib/libtxi.a $(top_builddir)/gnulib/lib/libgnu.a $(LIBINTL)