~ubuntu-branches/ubuntu/maverick/texinfo/maverick

« back to all changes in this revision

Viewing changes to Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Norbert Preining
  • Date: 2005-10-28 15:10:30 UTC
  • mto: (2.1.1 dapper) (3.1.4 hardy)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20051028151030-9nsf2s2k2z3fktjt
Tags: upstream-4.8
ImportĀ upstreamĀ versionĀ 4.8

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Makefile.am for texinfo.
2
 
# $Id: Makefile.am,v 1.23 2002/02/25 18:11:14 karl Exp $
 
2
# $Id: Makefile.am,v 1.13 2004/12/15 16:53:59 kasal Exp $
3
3
# Process this file with automake to produce Makefile.in in all directories.
4
4
#
5
5
# This file is free software; as a special exception the author gives
11
11
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
12
 
13
13
# Be sure we're using the right version of Automake.
14
 
AUTOMAKE_OPTIONS = 1.4 readme-alpha
 
14
AUTOMAKE_OPTIONS = 1.8 readme-alpha
15
15
 
16
16
# Additional files to distribute.
17
 
EXTRA_DIST = COPYING.DOC INTRODUCTION config.rpath dir-example djgpp
 
17
EXTRA_DIST = ChangeLog.46 INSTALL.generic INTRODUCTION README.dev \
 
18
  config.rpath \
 
19
  djgpp/README djgpp/config.bat djgpp/config.sed djgpp/config.site
18
20
 
19
21
# This is to prevent texinfo.tex from being included in the top-level
20
22
# distribution directory.
21
23
TEXINFO_TEX = doc/texinfo.tex
22
24
 
23
 
# All subdirectories.
24
 
# Do intl, m4, and lib first since the C programs depend on them.
25
 
# Do doc last so makeinfo will be built when we get there.
26
 
# Others are alphabetical.
27
 
SUBDIRS = intl m4 lib info makeinfo po util doc
 
25
if TOOLS_ONLY
 
26
  # Build native tools only.
 
27
  SUBDIRS = lib info makeinfo util
 
28
else
 
29
  # All subdirectories.
 
30
  # Do intl, m4, and lib first since the C programs depend on them.
 
31
  # Do doc last so makeinfo will be built when we get there.
 
32
  # Others are alphabetical.
 
33
  SUBDIRS = $(native_tools) intl m4 lib info makeinfo po util doc
 
34
endif
28
35
 
29
36
# for gettext.
30
37
ACLOCAL_AMFLAGS = -I m4
31
38
 
32
 
# One special target for them to use by hand.
 
39
# In case TEXINFO_MAINT is set during make distcheck; in this case, the
 
40
# simple doc-related files generated in info/ make distcleancheck fail.
 
41
distcleancheck_listfiles = \
 
42
  find -type f -exec sh -c 'test -f $(srcdir)/{} || echo {}' ';'
 
43
 
 
44
# One special target for installers to use by hand if desired.
33
45
install-tex:
34
46
        cd doc && $(MAKE) TEXMF=$(TEXMF) install-tex
 
47
 
 
48
distclean-local:
 
49
        -test -d "$(native_tools)" && rm -rf "$(native_tools)"
 
50
 
 
51
# Don't install native tools for cross compile.
 
52
if TOOLS_ONLY
 
53
install:
 
54
 
 
55
endif