faf0627fd4e113fca35bbbeffe228b069e70a110
[openafs.git] / doc / xml / AdminGuide / NTMakefile
1 # Copyright 2009, Secure Endpoints Inc.
2 # All Rights Reserved.
3 #
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are met:
6 #
7 # - Redistributions of source code must retain the above copyright notice,
8 #   this list of conditions and the following disclaimer.
9 # - Redistributions in binary form must reproduce the above copyright notice,
10 #   this list of conditions and the following disclaimer in the documentation
11 #   and/or other materials provided with the distribution.
12 # - Neither the name of Secure Endpoints Inc. nor the names of its contributors
13 #   may be used to endorse or promote products derived from this software without
14 #   specific prior written permission from Secure Endpoints Inc..
15 #
16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
18 # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
19 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
20 # OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
21 # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
22 # PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23 # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
24 # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
25 # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28 VERSFILE = version
29 !INCLUDE ..\..\..\src\config\NTMakefile.$(SYS_NAME)
30 !INCLUDE ..\..\..\src\config\NTMakefile.version
31
32 !IFNDEF CYGWIN
33 CYGWIN     = c:/cygwin
34 !ENDIF
35 !IFNDEF DOCBOOK_XSL
36 DOCBOOK_XSL = $(CYGWIN)/usr/share/docbook-xsl
37 !ENDIF
38 XSLTPROC   = xsltproc.exe
39 HTML_XSL = $(DOCBOOK_XSL)/html/chunk.xsl
40 HTML_PARMS = --param navig.graphics 1 --stringparam navig.graphics.path ../
41 CHM_XSL    = $(DOCBOOK_XSL)/htmlhelp/htmlhelp.xsl
42
43 XMLSRCS = \
44         auagd000.xml \
45         auagd005.xml \
46         auagd006.xml \
47         auagd007.xml \
48         auagd008.xml \
49         auagd009.xml \
50         auagd010.xml \
51         auagd011.xml \
52         auagd012.xml \
53         auagd013.xml \
54         auagd014.xml \
55         auagd015.xml \
56         auagd016.xml \
57         auagd017.xml \
58         auagd018.xml \
59         auagd019.xml \
60         auagd020.xml \
61         auagd021.xml \
62         auagd022.xml \
63         auagd023.xml \
64         auagd024.xml \
65         auagd025.xml \
66         $(VERSFILE).xml
67
68 index.html: $(XMLSRCS)
69         @echo Building OpenAFS Administrator Guide in HTML format
70         $(XSLTPROC) $(HTML_PARMS) $(HTML_XSL) auagd000.xml 
71
72 htmlhelp.chm: $(XMLSRCS)
73         @echo Building OpenAFS Administrator Guide in HTML Help format
74         $(XSLTPROC) $(CHM_XSL) auagd000.xml
75         -hhc.exe htmlhelp.hhp
76         $(DEL) *.html
77         $(DEL) *.hh?
78         $(DEL) *.chw
79
80 install: htmlhelp.chm index.html
81
82 clean::
83         $(DEL) *.html
84         $(DEL) htmlhelp.chm
85         $(DEL) $(VERSFILE).xml