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