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