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