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