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# Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
23
24include ../../../../Makefile.master
25
26HTMLENTS = \
27	RtAcctadm.html \
28	RtAll.html \
29	RtAuditCfg.html \
30	RtAuditCtrl.html \
31	RtAuditReview.html \
32	RtContractObserver.html \
33	RtConsUser.html \
34	RtCronMngmnt.html \
35	RtCryptoMngmnt.html \
36	RtExAcctFlow.html \
37	RtExAcctProcess.html \
38	RtExAcctTask.html \
39	RtExAcctNet.html \
40	RtLogMngmnt.html \
41	RtDeviceMngmnt.html \
42	RtDeviceSecurity.html \
43	RtDHCPMngmnt.html \
44	RtFileSysMngmnt.html \
45	RtFileSysSecurity.html \
46	RtFTPMngmnt.html \
47	RtHotplugMngmnt.html \
48	RtInetdMngmnt.html \
49	RtIPFilterMngmnt.html \
50	RtKerberosClntMngmnt.html \
51	RtKerberosSrvrMngmnt.html \
52	RtMailMngmnt.html \
53	RtMaintAndRepair.html \
54	RtMediaBkup.html \
55	RtMediaCtlg.html \
56	RtMediaRestore.html \
57	RtNDMPMngmnt.html \
58	RtNameServiceAdmin.html \
59	RtNameServiceSecure.html \
60	RtNetAutoconfAdmin.html \
61	RtNetAutoconfUser.html \
62	RtNetILB.html \
63	RtNetIPsec.html \
64	RtNetMngmnt.html \
65	RtNetObservability.html \
66	RtNetSecure.html \
67	RtNetWifiMngmnt.html \
68	RtNetWifiSecure.html \
69	RtNetLinkSecure.html \
70	RtNetVRRP.html \
71	RtObAccessMngmnt.html \
72	RtOperator.html \
73	RtPriAdmin.html \
74	RtPrntAdmin.html \
75	RtProcManagement.html \
76	RtReparseMngmnt.html \
77	RtReservedProfile.html \
78	RtRightsDelegate.html \
79	RtSMBMngmnt.html \
80	RtSMBFSMngmnt.html \
81	RtSoftwareInstall.html \
82	RtSysAdmin.html \
83	RtSysEvMngmnt.html \
84	RtUserMngmnt.html \
85	RtUserSecurity.html \
86	RtDatAdmin.html \
87	RtZFSFileSysMngmnt.html \
88	RtZFSStorageMngmnt.html \
89	RtZoneMngmnt.html \
90	RtZoneSecurity.html \
91	RtInfoSec.html \
92	RtObjectLabelMngmnt.html \
93	RtOutsideAccred.html \
94	RtDefault.html \
95	RtIdmapMngmnt.html \
96	RtIdmapNameRulesMngmnt.html \
97	RtVscanMngmnt.html \
98	RtSysPowerMgmt.html \
99	RtSysPowerMgmtSuspend.html \
100	RtSysPowerMgmtSuspendtoDisk.html \
101	RtSysPowerMgmtSuspendtoRAM.html \
102	RtSysPowerMgmtBrightness.html \
103	RtCPUPowerManagement.html
104
105HELPDIR =	$(ROOT)/usr/lib/help
106PROFDIR =	$(HELPDIR)/profiles
107LOCALEDIR =	$(PROFDIR)/locale
108CDIR =		$(LOCALEDIR)/C
109DIRS =		$(HELPDIR) $(PROFDIR) $(LOCALEDIR) $(CDIR)
110HELPFILES=$(HTMLENTS:%=$(CDIR)/%)
111
112MSGDIR=		$(LOCALEDIR)
113MSGDIRS =       $(HELPDIR) $(PROFDIR) $(LOCALEDIR)
114
115MSGFILES=	$(HTMLENTS)
116MSGS=		$(MSGFILES:%=$(MSGDIR)/%)
117
118FILEMODE = 0444
119
120.KEEP_STATE:
121
122all:	$(HTMLENTS)
123
124install:	all $(DIRS) $(HELPFILES)
125
126_msg: $(MSGDIRS) $(MSGS)
127
128$(CDIR)/%: %
129	$(INS.file)
130
131$(DIRS):
132	$(INS.dir)
133
134$(MSGDIR)/%: %
135	$(INS.file)
136
137clean clobber lint:
138