home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fresh Fish 4
/
FreshFish_May-June1994.bin
/
bbs
/
may94
/
util
/
edit
/
jade.lha
/
Jade
/
doc
/
Makefile
< prev
Wrap
Makefile
|
1994-04-19
|
2KB
|
56 lines
# Makefile for Jade's Texinfo manual
# Copyright (C) 1993, 1994 John Harper <jsh@ukc.ac.uk>
# Jade 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 2, or (at your option)
# any later version.
# Jade 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 Jade; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
MAKEINFO = makeinfo
# This should be the special version of makeinfo which supports AmigaGuide
# files if you want the .guide or .doc file
MAKEGUIDE = makeguide
#MAKEINFOFLAGS = --no-validate
TEXI2DVI = texi2dvi
DVIPS = dvips
%.info : %.texi
$(MAKEINFO) $(MAKEINFOFLAGS) $< -o $@
%.guide : %.texi
$(MAKEGUIDE) $(MAKEINFOFLAGS) --amiga $< -o $@
%.doc : %.texi
$(MAKEGUIDE) $(MAKEINFOFLAGS) --amiga --no-headers $< -o $@
%.dvi : %.texi
$(TEXI2DVI) $<
%.ps : %.dvi
$(DVIPS) $<
all : jade.info
man : jade.info jade.guide jade.doc jade.dvi jade.ps
install.info : jade.info
for file in jade.info*; \
do \
$(INSTALL_DATA) $$file $(infodir)/$$file; \
done
clean realclean :
rm -f *~ jade.info* jade.guide jade.doc jade.dvi jade.ps