### Makefile --- create info, ps and html files for package X-Symbol

## Author: Christoph Wedler <wedler@fmi.uni-passau.de>
## Version: $Id: Makefile,v 3.2 1998/12/14 14:37:40 wedler Exp d029492 $
## Keywords: fonts, WYSIWYG, LaTeX, HTML, wp, math
## X-URL: http://www.fmi.uni-passau.de/~wedler/x-symbol/

# This file is not part of XEmacs.

# This software 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.

# This software 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 This software; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.


MAKEINFO = makeinfo --no-split
TEXI2DVI = texi2dvi
DVIPS = dvips
TEXI2HTML = texi2html -expand info -split chapter -menu -number

info:	x-symbol.info
x-symbol.info: x-symbol.texi
	$(MAKEINFO) x-symbol.texi

ps:	x-symbol.ps
x-symbol.ps: x-symbol.dvi
	$(DVIPS) -o x-symbol.ps x-symbol.dvi
x-symbol.dvi: x-symbol.texi
	$(TEXI2DVI) x-symbol.texi

html:	x-symbol_toc.html
x-symbol_toc.html: x-symbol.texi
	$(TEXI2HTML) x-symbol.texi

all:	info ps html

clean:
	rm -f x-symbol x-symbol.aux x-symbol.cp* \
                x-symbol.dvi x-symbol.fn* x-symbol.ky* \
                x-symbol.log x-symbol.pg* x-symbol.ps \
                x-symbol.toc x-symbol.tp x-symbol.tp \
                x-symbol.vr* x-symbol.info* x-symbol*.html
