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 2006 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	RtIPFilterMngmnt.html \
46	RtKerberosClntMngmnt.html \
47	RtKerberosSrvrMngmnt.html \
48	RtMailMngmnt.html \
49	RtMaintAndRepair.html \
50	RtMediaBkup.html \
51	RtMediaRestore.html \
52	RtNameServiceAdmin.html \
53	RtNameServiceSecure.html \
54	RtNetMngmnt.html \
55	RtNetSecure.html \
56	RtNetWifiMngmnt.html \
57	RtNetWifiSecure.html \
58	RtNetLinkSecure.html \
59	RtObAccessMngmnt.html \
60	RtPrntAdmin.html \
61	RtProcManagement.html \
62	RtRightsDelegate.html \
63	RtSoftwareInstall.html \
64	RtSysEvMngmnt.html \
65	RtUserMngmnt.html \
66	RtUserSecurity.html \
67	RtDatAdmin.html \
68	RtZFSFileSysMngmnt.html \
69	RtZFSStorageMngmnt.html \
70	RtZoneMngmnt.html \
71	RtDefault.html
72
73
74HELPDIR =	$(ROOT)/usr/lib/help
75PROFDIR =	$(HELPDIR)/profiles
76LOCALEDIR =	$(PROFDIR)/locale
77CDIR =		$(LOCALEDIR)/C
78DIRS =		$(HELPDIR) $(PROFDIR) $(LOCALEDIR) $(CDIR)
79HELPFILES=$(HTMLENTS:%=$(CDIR)/%)
80
81MSGDIR=		$(LOCALEDIR)
82MSGDIRS =       $(HELPDIR) $(PROFDIR) $(LOCALEDIR)
83
84MSGFILES=	$(HTMLENTS)
85MSGS=		$(MSGFILES:%=$(MSGDIR)/%)
86
87FILEMODE = 0444
88$(HELPFILES) := OWNER = root
89$(HELPFILES) := GROUP = bin
90
91.KEEP_STATE:
92
93all:	$(HTMLENTS)
94
95install:	all $(DIRS) $(HELPFILES)
96
97_msg: $(MSGDIRS) $(MSGS)
98
99$(CDIR)/%: %
100	$(INS.file)
101
102$(DIRS):
103	$(INS.dir)
104
105$(MSGDIR)/%: %
106	$(INS.file)
107
108clean clobber lint:
109