# Hey Emacs, the Makefile for the Finger documentation is in -*- text -*- mode!
#
# Makefile for the finger documentation
#
# Copyright (C) 1988,1990 Free Software Foundation, Inc.
# Copyright (C) 1991 International Computer Science Institute, Berkeley, USA.
#
# This file is part of GNU Finger.
# 
# GNU Finger is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 1, or (at your
# option) any later version.
#
# GNU Finger is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Finger; see the file COPYING.  If not, write to the
# Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
#
# $Id: Makefile,v 1.4 1991/12/14 23:01:13 stolcke Exp $ ICSI (Berkeley)
#

MAKEINFO = makeinfo
MAKEINFO_FLAGS = +fill-column=70 +paragraph-indent=-1
TEX = tex

all: finger.info finger.dvi

finger.info: finger.texinfo
	$(MAKEINFO) $(MAKEINFO_FLAGS) finger.texinfo

finger.dvi: finger.texinfo
	$(TEX) finger.texinfo

support: ../support/INSTALL ../support/RELEASE

../support/INSTALL: finger.info
	info -f finger.info -n "Basic Installation" -o ../support/INSTALL

../support/RELEASE: finger.info
	info -f finger.info -n "Introduction" -o ../support/RELEASE

allclean: clean
	rm -f finger.dvi finger.info

clean:
	rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr
