r8190: output xhtml
[clsql.git] / doc / Makefile
1 ##############################################################################
2 # FILE IDENTIFICATION
3
4 #  Name:         Makefile
5 #  Purpose:      Makefile for the clsql documentation
6 #  Programer:    Kevin M. Rosenberg
7 #  Date Started: Mar 2002
8 #
9 #  CVS Id:   $Id$
10 #
11 # This file, part of CLSQL, is Copyright (c) 2002-2003 by Kevin M. Rosenberg
12 #
13 # CLSQL users are granted the rights to distribute and use this software
14 # as governed by the terms of the Lisp Lesser GNU Public License
15 # (http://opensource.franz.com/preamble.html), also known as the LLGPL.
16 ##############################################################################
17
18 DOCFILE_BASE_DEFAULT:=clsql
19 DOCFILE_EXT_DEFAULT:=xml
20
21
22 # Standard docfile processing
23
24 DEBIAN=$(shell expr "`cat /etc/issue`" : '.*Debian.*')
25 SUSE=$(shell expr "`cat /etc/issue`" : '.*SuSE.*')
26 REDHAT=$(shell expr "`cat /etc/issue`" : '.*RedHat.*')
27
28 ifneq (${DEBIAN},0)
29 OS:=debian
30 else
31   ifneq (${SUSE},0)
32     OS=suse
33   else   
34     ifneq (${REDHAT},0)
35       OS=redhat
36     endif
37   endif
38 endif
39
40
41 ifndef DOCFILE_BASE
42 DOCFILE_BASE=${DOCFILE_BASE_DEFAULT}
43 endif
44
45 ifndef DOCFILE_EXT
46 DOCFILE_EXT=${DOCFILE_EXT_DEFAULT}
47 endif
48
49 DOCFILE:=${DOCFILE_BASE}.${DOCFILE_EXT}
50 FOFILE:=${DOCFILE_BASE}.fo
51 PDFFILE:=${DOCFILE_BASE}.pdf
52 PSFILE:=${DOCFILE_BASE}.ps
53 DVIFILE:=${DOCFILE_BASE}.dvi
54 TXTFILE:=${DOCFILE_BASE}.txt
55 HTMLFILE:=${DOCFILE_BASE}.html
56 TMPFILES:=${DOCFILE_BASE}.aux ${DOCFILE_BASE}.out ${DOCFILE_BASE}.log
57 DOCFILES:=$(shell echo *.xml *.xsl)
58
59 CATALOG:=`pwd`/catalog-${OS}.xml
60 CHECK:=XML_CATALOG_FILES="$(CATALOG)" xmllint --noout --xinclude --postvalid $(DOCFILE) || exit 1
61
62 .PHONY: all
63 all: html pdf 
64
65 .PHONY: dist
66 dist: html pdf
67
68 .PHONY: doc
69 doc: html pdf
70
71 .PHONY: check
72 check:
73         @echo "Operating system detected: ${OS}"
74         @$(CHECK)
75
76 .PHONY: html
77 html: html.tar.gz
78
79 html.tar.gz: $(DOCFILES) Makefile 
80         @rm -rf html
81         @mkdir html
82         @XML_CATALOG_FILES="$(CATALOG)" xsltproc --xinclude --output html/ html_chunk.xsl $(DOCFILE)
83         @GZIP='-9' tar czf html.tar.gz html 
84
85 .PHONY: fo
86 fo: ${FOFILE}
87
88 ${FOFILE}: $(DOCFILES) Makefile 
89         @XML_CATALOG_FILES="$(CATALOG)" xsltproc --xinclude --output $(FOFILE) fo.xsl $(DOCFILE)
90
91 .PHONY: pdf
92 pdf: ${PDFFILE}
93
94 ${PDFFILE}: ${DOCFILES} Makefile
95         @$(MAKE) fo
96         @fop $(FOFILE) -pdf $(PDFFILE) > /dev/null
97
98 .PHONY: dvi
99 dvi: ${DVIFILE}
100
101 .PHONY: ps
102 ps: ${PSFILE}
103
104 ${PSFILE}: ${DOCFILES} Makefile
105         @$(MAKE) fo
106         @fop $(FOFILE) -ps $(PSFILE) > /dev/null
107
108
109 .PHONY: txt
110 txt: ${TXTFILE}
111
112 ${TXTFILE}: ${FOFILE}
113         @XML_CATALOG_FILES="$(CATALOG)" xsltproc --xinclude --output ${HTMLFILE} html.xsl $(DOCFILE)
114         lynx -dump ${HTMLFILE} > ${TXTFILE}
115
116 .PHONY: clean
117 clean: 
118         @rm -f *~ *.bak *.orig \#*\# .\#* texput.log
119         @rm -rf html ${PSFILE} ${HTMLFILE}
120         @rm -f ${TMPFILES} ${FOFILE}
121         @rm -f  ${DVIFILE} ${TXTFILE}
122
123 .PHONY: distclean
124 distclean: clean