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