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