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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25#ident	"%Z%%M%	%I%	%E% SMI"
26#
27# lib/libsecdb/help/profiles/Makefile
28#
29
30include ../../../../Makefile.master
31
32HTMLENTS = \
33	RtAll.html \
34	RtAuditCtrl.html \
35	RtAuditReview.html \
36	RtContractObserver.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	RtIPFilterMngmnt.html \
47	RtKerberosClntMngmnt.html \
48	RtKerberosSrvrMngmnt.html \
49	RtMailMngmnt.html \
50	RtMaintAndRepair.html \
51	RtMediaBkup.html \
52	RtMediaRestore.html \
53	RtNameServiceAdmin.html \
54	RtNameServiceSecure.html \
55	RtNetMngmnt.html \
56	RtNetSecure.html \
57	RtNetWifiMngmnt.html \
58	RtNetWifiSecure.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