~ubuntu-branches/ubuntu/lucid/sawfish/lucid-updates

« back to all changes in this revision

Viewing changes to man/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Christian Marillat
  • Date: 2002-01-20 17:42:28 UTC
  • Revision ID: james.westby@ubuntu.com-20020120174228-4q1ydztbkvfq1ht2
Tags: upstream-1.0.1.20020116
ImportĀ upstreamĀ versionĀ 1.0.1.20020116

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Makefile.in for sawmill's Texinfo manual
 
2
# Copyright (C) 1998 John Harper <john@dcs.warwick.ac.uk>
 
3
# $Id: Makefile.in,v 1.12 2000/11/14 01:08:03 jsh Exp $
 
4
#
 
5
# This file is part of sawmill.
 
6
#
 
7
# sawmill is free software; you can redistribute it and/or modify it
 
8
# under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation; either version 2, or (at your option)
 
10
# any later version.
 
11
#
 
12
# sawmill is distributed in the hope that it will be useful, but
 
13
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with sawmill; see the file COPYING.  If not, write to
 
19
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 
20
 
 
21
include ../Makedefs
 
22
 
 
23
top_builddir=..
 
24
top_srcdir=@top_srcdir@
 
25
srcdir=@srcdir@
 
26
VPATH=@srcdir@:@top_srcdir@
 
27
 
 
28
SRCS = sawmill.texi news.texi faq.texi
 
29
 
 
30
MAKEINFO = makeinfo
 
31
 
 
32
#MAKEINFOFLAGS = --no-validate
 
33
MAKEINFOFLAGS = 
 
34
 
 
35
TEXI2DVI = texi2dvi
 
36
DVIPS = dvips
 
37
 
 
38
all : sawfish.info ../NEWS
 
39
 
 
40
../NEWS : news.texi
 
41
        $(MAKEINFO) $(MAKEINFOFLAGS) --no-headers $< -o ../NEWS
 
42
 
 
43
../FAQ : faq.texi
 
44
        $(MAKEINFO) $(MAKEINFOFLAGS) --no-validate --no-headers $< -o ../FAQ
 
45
 
 
46
sawfish.info : $(SRCS)
 
47
        $(MAKEINFO) $(MAKEINFOFLAGS) -I $(srcdir) $< -o sawfish.info
 
48
 
 
49
sawfish.dvi : $(SRCS)
 
50
        $(TEXI2DVI) -I $(srcdir) $<
 
51
 
 
52
sawfish.ps : sawfish.dvi
 
53
        $(DVIPS) -f <sawfish.dvi >sawfish.ps
 
54
 
 
55
man : sawfish.info sawfish.guide sawfish.doc sawfish.dvi sawfish.ps
 
56
 
 
57
install : sawfish.info installdirs
 
58
        for f in sawfish.info*; do \
 
59
          $(INSTALL_DATA) $$f $(DESTDIR)$(infodir); \
 
60
        done
 
61
        -install-info sawfish.info $(DESTDIR)$(infodir)/dir
 
62
 
 
63
installdirs : mkinstalldirs
 
64
        $(SHELL) $< $(DESTDIR)$(infodir)
 
65
 
 
66
uninstall :
 
67
        rm -f $(DESTDIR)$(infodir)/sawfish.info*
 
68
        -install-info --delete sawfish.info $(DESTDIR)$(infodir)/dir
 
69
 
 
70
clean :
 
71
        rm -f *~ sawfish.info* sawfish.?? sawfish.???
 
72
 
 
73
realclean : clean
 
74
        rm -f Makefile