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
|
# C->Haskell Compiler: documentation makefile
#
# Author : Manuel M T Chakravarty
# Created: 30 October 1999
#
# Version $Revision: 1.9 $ from $Date: 2002/07/06 09:59:40 $
#
# Copyright (c) [1999..2002] Manuel M T Chakravarty
#
# This file 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 file 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.
#
# = DOCU =====================================================================
#
# * Nothing is installed at the moment. That has to be done manually.
# must be first
#
default: html
XMLLINT=xmllint
XMLLINT_OPTIONS=--nonet --noout --valid
XSLTPROC=xsltproc
XSLTPROC_HTML_OUTDIR=users_guide/
XSLTPROC_HTML_CSS=c2hs.css
XSLTPROC_HTML_PARAMS=\
--param use.id.as.filename 1 \
--stringparam base.dir $(XSLTPROC_HTML_OUTDIR) \
--stringparam html.stylesheet $(XSLTPROC_HTML_CSS)
XSLTPROC_HTML_STYLESHEET=http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
XSLTPROC_OPTIONS=--nonet $(XSLTPROC_HTML_PARAMS) $(XSLTPROC_HTML_STYLESHEET)
# build targets
#
.PHONY: html pdf
html: c2hs.xml
$(XMLLINT) $(XMLLINT_OPTIONS) $<
$(XSLTPROC) $(XSLTPROC_OPTIONS) $<
cp $(XSLTPROC_HTML_CSS) $(XSLTPROC_HTML_OUTDIR)
pdf: c2hs.xml
sgml2pdf $<
# auxiliary targets
#
.PHONY: clean
clean:
-rm -rf users_guide/ c2hs.pdf
|