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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
|
###############################################################################
# #
# Frown --- An LALR(k) parser generator for Haskell 98 #
# Copyright (C) 2001-2005 Ralf Hinze #
# #
# This program is free software; you can redistribute it and/or modify #
# it under the terms of the GNU General Public License (version 2) as #
# published by the Free Software Foundation. #
# #
# 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; see the file COPYING. If not, write to #
# the Free Software Foundation, Inc., 59 Temple Place - Suite 330, #
# Boston, MA 02111-1307, USA. #
# #
# Contact information #
# Email: Ralf Hinze <ralf@cs.uni-bonn.de> #
# Homepage: http://www.informatik.uni-bonn.de/~ralf/ #
# Paper mail: Dr. Ralf Hinze #
# Institut für Informatik III #
# Universität Bonn #
# Römerstraße 164 #
# 53117 Bonn, Germany #
# #
###############################################################################
#-----------------------------------------------------------------------------
# directories and files
file := Manual
sources := $(Examples/wildcard *.lg)
sessions := $(sources:.lg=.session)
#-----------------------------------------------------------------------------
# commands
ghc := ghc
ghcflags := -Wall -O
flags := --poly
spell := ispell -d british -t -l -p
#-----------------------------------------------------------------------------
# pattern rules
%.tex : %.lhs %.fmt $(sessions)
lhs2TeX $(flags) $< > $@
%.ps : %.dvi
dvips -o $@ $<
%.pdf : %.dvi
dvipdfm $<
%.hi : %.o
@:
%.out : %.lg %.in
Examples/test-frown --generate $<
%.session : %.out
Examples/sessions $<
#-----------------------------------------------------------------------------
# rules
.PHONY : man examples edit xdvi gv acro print spell spellupdate links clean distclean
man: $(file).pdf html
install: man
mkdir -p $(doc)
cp $(file).pdf $(doc)
cp -r html $(doc)
edit :
xemacs $(file).fmt $(file).lhs &
examples:
cd Examples && $(MAKE) man
# $(file).dvi depends on $(file).lhs rather than $(file).tex, so that
# it is not generated when $(file).tex is removed in the distribution.
$(file).dvi : $(file).lhs $(file).fmt $(sessions)
$(MAKE) $(file).tex
latex $(file)
bibtex $(file)
latex $(file)
latex $(file)
latex $(file)
xdvi : $(file).dvi
xdvi -s 6 $(file).dvi &
gv : $(file).ps
gv -spartan $(file).ps &
acro : $(file).pdf
/opt/Acrobat7/acroread $(file).pdf &
html: $(file).lhs $(file).fmt $(sessions)
lhs2TeX --math $(file).lhs > $(file).tex
latex $(file)
bibtex $(file)
latex $(file)
latex $(file)
latex $(file)
# the above commands are only used to produce a `.bbl' file
lhs2TeX --tt -lhtml=True $(file).lhs > $(file).tex
hevea -fix $(file).tex
hevea -fix $(file).tex
hacha $(file).html
imagen $(file)
mkdir -p html
mv index.html $(file).html $(file).css $(file)[0-9]*.html $(file)[0-9]*.png *motif.gif html
spell: $(file).tex
egrep -v '$\%' $(file).tex | $(spell) $(file).spell | sort | uniq
spellupdate: $(file).tex
egrep -v '$\%' $(file).tex | $(spell) $(file).spell | sort | uniq > $(file).spell
sessions: Examples/Sessions.lhs
cd Examples && $(MAKE) sessions
test-frown: Examples/TestFrown.lhs
cd Examples && $(MAKE) test-frown
links:
ln -s $(HOME)/local/abbr.bib
ln -s $(HOME)/local/rh.bib
ln -s $(HOME)/local/lhs2TeX.fmt
ln -s $(HOME)/local/lhs2TeX.sty
ln -s $(HOME)/local/FuncMP.mp
clean:
@rm -f *~ *.aux *.bbl *.blg *.log *.toc *.out
@rm -f $(file).tex $(file).image.tex *.mpx
cd Examples && $(MAKE) clean
distclean : clean
@rm -f abbr.bib rh.bib lhs2TeX.fmt lhs2TeX.sty FuncMP.mp
|