1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
#* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
#* *
#* File....: Makefile *
#* Name....: ZIMPL Documentation makefile *
#* Author..: Thorsten Koch *
#* Copyright by Author, All rights reserved *
#* *
#* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
#
# Copyright (C) 2001-2025 by Thorsten Koch <koch@zib.de>
#
# This program 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
# of the License, or (at your option) any later version.
#
# This program 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 program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#
.PHONY: clean spell all
all: zimpl.pdf
#zimpl.pdf: zimpl.tex zimplug.tex zimplerr.tex zimpl.bib ziblogo2.eps
# pdflatex zimpl
# bibtex zimpl
# pdflatex zimpl
# pdflatex zimpl
zimpl.pdf: zimpl.ps
ps2pdf14 zimpl.ps
zimpl.ps: zimpl.dvi
dvips -ta4 -O0in,-1in -o $@ zimpl.dvi
zimpl.dvi: zimpl.tex zimplug.tex zimplerr.tex zimpl.bib ziblogo2.eps
latex -halt-on-error zimpl
bibtex zimpl
latex -halt-on-error zimpl
latex -halt-on-error zimpl
zimpl.man.ps: zimpl.man
groff -man -Tps zimpl.man >zimpl.man.ps
spell:
ispell -t -S zimpl.tex zimplug.tex
clean:
-rm -f *.aux *.log *.bbl *.blg zimpl.dvi zimpl.ps
# --- EOF ---------------------------------------------------------------------
|