~ubuntu-branches/ubuntu/intrepid/mit-scheme/intrepid-updates

« back to all changes in this revision

Viewing changes to doc/user-manual/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Chris Hanson
  • Date: 2002-03-14 17:04:07 UTC
  • Revision ID: james.westby@ubuntu.com-20020314170407-m5lg1d6bdsl9lv0s
Tags: upstream-7.7.0
ImportĀ upstreamĀ versionĀ 7.7.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
# $Id: Makefile.in,v 1.4 2001/02/23 04:36:24 cph Exp $
 
3
#
 
4
# Copyright (c) 2000-2001 Massachusetts Institute of Technology
 
5
#
 
6
# This program is free software; you can redistribute it and/or
 
7
# modify it under the terms of the GNU General Public License as
 
8
# published by the Free Software Foundation; either version 2 of the
 
9
# License, or (at your option) any later version.
 
10
#
 
11
# This program is distributed in the hope that it will be useful,
 
12
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
# General Public License for more details.
 
15
#
 
16
# You should have received a copy of the GNU General Public License
 
17
# along with this program; if not, write to the Free Software
 
18
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
19
 
 
20
# **** BEGIN BOILERPLATE ****
 
21
 
 
22
SHELL = @SHELL@
 
23
 
 
24
@SET_MAKE@
 
25
 
 
26
srcdir = @srcdir@
 
27
top_srcdir = @top_srcdir@
 
28
VPATH = @srcdir@
 
29
prefix = @prefix@
 
30
exec_prefix = @exec_prefix@
 
31
 
 
32
bindir = @bindir@
 
33
sbindir = @sbindir@
 
34
libexecdir = @libexecdir@
 
35
datadir = @datadir@
 
36
sysconfdir = @sysconfdir@
 
37
sharedstatedir = @sharedstatedir@
 
38
localstatedir = @localstatedir@
 
39
libdir = @libdir@
 
40
infodir = @infodir@
 
41
mandir = @mandir@
 
42
includedir = @includedir@
 
43
oldincludedir = /usr/include
 
44
 
 
45
DESTDIR =
 
46
top_builddir = .
 
47
 
 
48
INSTALL = @INSTALL@
 
49
INSTALL_PROGRAM = @INSTALL_PROGRAM@
 
50
INSTALL_DATA = @INSTALL_DATA@
 
51
INSTALL_SCRIPT = @INSTALL_SCRIPT@
 
52
 
 
53
LN_S = @LN_S@
 
54
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
 
55
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
 
56
 
 
57
# **** END BOILERPLATE ****
 
58
 
 
59
htmldir = @htmldir@
 
60
pdfdir = @pdfdir@
 
61
psdir = @psdir@
 
62
 
 
63
INFO_TARGET = mit-scheme-user.info
 
64
 
 
65
all: $(INFO_TARGET) user.html user.pdf user.ps
 
66
 
 
67
$(INFO_TARGET): user.texinfo gfdl.texinfo
 
68
        rm -f $(INFO_TARGET)*
 
69
        makeinfo --output=$(INFO_TARGET) user.texinfo
 
70
 
 
71
user.html: user.texinfo gfdl.texinfo
 
72
        rm -f user*.html
 
73
        texi2html -split_chapter user.texinfo
 
74
 
 
75
user.pdf: user.texinfo gfdl.texinfo
 
76
        texi2pdf user.texinfo
 
77
 
 
78
user.ps: user.dvi
 
79
        dvips -o $@ $^
 
80
 
 
81
user.dvi: user.texinfo gfdl.texinfo
 
82
        texi2dvi user.texinfo
 
83
 
 
84
AUX_SUFFIXES = aux log toc
 
85
INDEX_SUFFIXES = cp fn ky pg tp vr
 
86
 
 
87
mostlyclean:
 
88
        @for S in $(AUX_SUFFIXES); do \
 
89
            echo "rm -f user.$${S}";\
 
90
            rm -f user.$${S};\
 
91
        done
 
92
        @for S in $(INDEX_SUFFIXES); do \
 
93
            echo "rm -f user.$${S}";\
 
94
            rm -f user.$${S};\
 
95
            echo "rm -f user.$${S}s";\
 
96
            rm -f user.$${S}s;\
 
97
        done
 
98
        rm -f user.dvi
 
99
 
 
100
clean: mostlyclean
 
101
        rm -f $(INFO_TARGET)* user*.html user.pdf user.ps
 
102
 
 
103
distclean: clean
 
104
 
 
105
maintainer-clean: distclean
 
106
 
 
107
# The install rules depend on macro variables passwd down from the
 
108
# makefile in the top-level documentation directory.
 
109
 
 
110
install-info: $(INFO_TARGET)
 
111
        -rm -f $(DESTDIR)$(infodir)/$(INFO_TARGET)*
 
112
        $(INSTALL_DATA) $(INFO_TARGET)* $(DESTDIR)$(infodir)/.
 
113
 
 
114
install-info-gz: install-info
 
115
        gzip -v $(DESTDIR)$(infodir)/$(INFO_TARGET)*
 
116
 
 
117
install-html: user.html
 
118
        $(INSTALL_DATA) user*.html $(DESTDIR)$(htmldir)/.
 
119
 
 
120
install-pdf: user.pdf
 
121
        $(INSTALL_DATA) user.pdf $(DESTDIR)$(pdfdir)/.
 
122
 
 
123
install-ps: user.ps
 
124
        $(INSTALL_DATA) user.ps $(DESTDIR)$(psdir)/.
 
125
 
 
126
.PHONY: all mostlyclean clean distclean maintainer-clean
 
127
.PHONY: install-info install-html install-pdf install-ps