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# Copyright 2021 OmniOS Community Edition (OmniOSce) Association. 27# 28 29ROOTDOCDIRBASE= $(ROOT)/usr/share/doc/ksh 30 31DOCFILES= \ 32 RELEASE \ 33 README \ 34 TYPES \ 35 DESIGN \ 36 COMPATIBILITY \ 37 OBSOLETE \ 38 shell_styleguide.docbook \ 39 images/tag_bourne.png \ 40 images/tag_i18n.png \ 41 images/tag_ksh88.png \ 42 images/tag_ksh93.png \ 43 images/tag_ksh.png \ 44 images/tag_l10n.png \ 45 images/tag_perf.png \ 46 images/callouts/1.png \ 47 images/callouts/2.png \ 48 images/callouts/3.png \ 49 images/callouts/4.png \ 50 images/callouts/5.png \ 51 images/callouts/6.png \ 52 images/callouts/7.png \ 53 images/callouts/8.png \ 54 images/callouts/9.png \ 55 images/callouts/10.png 56 57# Documentation rules 58$(ROOTDOCDIRBASE)/%: $(ASTSRC)/% 59 $(INS.file) 60 61$(ROOTDOCDIRBASE)/%: misc/% 62 $(INS.file) 63 64ROOTDOCDIRS= \ 65 $(ROOTDOCDIRBASE) .WAIT \ 66 $(ROOTDOCDIRBASE)/images .WAIT \ 67 $(ROOTDOCDIRBASE)/images/callouts 68 69# Generic documentation rules 70DOCFILESRCDIR= common 71ROOTDOCFILES= $(DOCFILES:%=$(ROOTDOCDIRBASE)/%) 72$(ROOTDOCDIRS) := OWNER = root 73$(ROOTDOCDIRS) := GROUP = bin 74$(ROOTDOCDIRS) := DIRMODE = 755 75 76$(ROOTDOCDIRS): 77 $(INS.dir) 78 79_docinstall: $(ROOTDOCDIRS) .WAIT $(ROOTDOCFILES) 80install: _docinstall 81