xref: /illumos-gate/usr/src/lib/libsecdb/help/profiles/Makefile (revision 67e3a03ed4a2813074d36330f062ed6e593a4937)
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
85
86HELPDIR =	$(ROOT)/usr/lib/help
87PROFDIR =	$(HELPDIR)/profiles
88LOCALEDIR =	$(PROFDIR)/locale
89CDIR =		$(LOCALEDIR)/C
90DIRS =		$(HELPDIR) $(PROFDIR) $(LOCALEDIR) $(CDIR)
91HELPFILES=$(HTMLENTS:%=$(CDIR)/%)
92
93MSGDIR=		$(LOCALEDIR)
94MSGDIRS =       $(HELPDIR) $(PROFDIR) $(LOCALEDIR)
95
96MSGFILES=	$(HTMLENTS)
97MSGS=		$(MSGFILES:%=$(MSGDIR)/%)
98
99FILEMODE = 0444
100$(HELPFILES) := OWNER = root
101$(HELPFILES) := GROUP = bin
102
103.KEEP_STATE:
104
105all:	$(HTMLENTS)
106
107install:	all $(DIRS) $(HELPFILES)
108
109_msg: $(MSGDIRS) $(MSGS)
110
111$(CDIR)/%: %
112	$(INS.file)
113
114$(DIRS):
115	$(INS.dir)
116
117$(MSGDIR)/%: %
118	$(INS.file)
119
120clean clobber lint:
121