1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26
27ROOTDOCDIRBASE=	$(ROOT)/usr/share/doc/ksh
28
29DOCFILES= \
30	RELEASE \
31	README \
32	TYPES \
33	DESIGN \
34	COMPATIBILITY \
35	OBSOLETE \
36	shell_styleguide.docbook \
37	shell_styleguide.html \
38	images/tag_bourne.png \
39	images/tag_i18n.png \
40	images/tag_ksh88.png \
41	images/tag_ksh93.png \
42	images/tag_ksh.png \
43	images/tag_l10n.png \
44	images/tag_perf.png \
45	images/callouts/1.png \
46	images/callouts/2.png \
47	images/callouts/3.png \
48	images/callouts/4.png \
49	images/callouts/5.png \
50	images/callouts/6.png \
51	images/callouts/7.png \
52	images/callouts/8.png \
53	images/callouts/9.png \
54	images/callouts/10.png
55
56# Documentation rules
57$(ROOTDOCDIRBASE)/%: common/%
58	$(INS.file)
59
60$(ROOTDOCDIRBASE)/%: misc/%
61	$(INS.file)
62
63ROOTDOCDIRS=	\
64	$(ROOTDOCDIRBASE) .WAIT \
65	$(ROOTDOCDIRBASE)/images .WAIT \
66	$(ROOTDOCDIRBASE)/images/callouts
67
68$(ROOTDOCDIRBASE)/%.html: misc/%.docbook
69	/usr/bin/xsltproc \
70		--nonet \
71		--stringparam generate.section.toc.level 0 \
72		--stringparam toc.max.depth 3 \
73		--stringparam toc.section.depth 12 \
74		--xinclude \
75		-o "$(@F)" \
76			/usr/share/sgml/docbook/xsl-stylesheets/html/docbook.xsl \
77			"$<" >xsltproc.log 2>&1
78	$(INS) -s -m $(FILEMODE) -f "$(@D)" "$(@F)"
79	$(RM) "$(@F)"
80
81# Generic documentation rules
82DOCFILESRCDIR=         common
83ROOTDOCFILES=  $(DOCFILES:%=$(ROOTDOCDIRBASE)/%)
84$(ROOTDOCDIRS) :=      OWNER =         root
85$(ROOTDOCDIRS) :=      GROUP =         bin
86$(ROOTDOCDIRS) :=      DIRMODE =       755
87
88$(ROOTDOCDIRS):
89	$(INS.dir)
90
91install: $(ROOTDOCDIRS) .WAIT $(ROOTDOCFILES)
92