xref: /illumos-gate/usr/src/lib/libsecdb/help/auths/Makefile (revision 150d2c5288c645a1c1a7d2bee61199a3729406c7)
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/auths/Makefile
27#
28
29include ../../../../Makefile.master
30
31HTMLENTS = \
32	AuditConfig.html \
33	AuditHeader.html \
34	AuditRead.html \
35	DevAllocHeader.html \
36	DevAllocate.html \
37	DevConfig.html \
38	DevCDRW.html \
39	DevGrant.html \
40	DevRevoke.html \
41	JobHeader.html \
42	AuthJobsAdmin.html \
43	JobsGrant.html \
44	AuthJobsUser.html \
45	LoginEnable.html \
46	LoginHeader.html \
47	LoginRemote.html \
48	MailHeader.html \
49	MailQueue.html \
50	PriAdmin.html \
51	AuthProfmgrAssign.html \
52	AuthProfmgrDelegate.html \
53	AuthProfmgrExecattrWrite.html \
54	AuthProfmgrRead.html \
55	ProfmgrHeader.html \
56	AuthProfmgrWrite.html \
57	AuthRoleAssign.html \
58	AuthRoleDelegate.html \
59	RoleHeader.html \
60	AuthRoleWrite.html \
61	SysDate.html \
62	SysHeader.html \
63	SysShutdown.html \
64	AllSolAuthsHeader.html \
65	DhcpmgrHeader.html \
66	DhcpmgrWrite.html \
67	BindStates.html \
68	SmfAutofsStates.html \
69	SmfCronStates.html \
70	SmfHeader.html \
71	SmfManageHeader.html \
72	SmfModifyAppl.html \
73	SmfModifyDepend.html \
74	SmfModifyFramework.html \
75	SmfModifyHeader.html \
76	SmfModifyMethod.html \
77	SmfNscdStates.html \
78	SmfPowerStates.html \
79	SmfRoutingStates.html \
80	SmfSendmailStates.html \
81	SmfSshStates.html \
82	SmfSyslogStates.html \
83	SmfValueHeader.html \
84	SmfValueRouting.html \
85	NetworkHeader.html \
86	WifiConfig.html \
87	WifiWep.html \
88	LinkSecurity.html
89
90HELPDIR=$(ROOT)/usr/lib/help
91AUTHDIR=$(HELPDIR)/auths
92LOCALEDIR=$(AUTHDIR)/locale
93CDIR=$(LOCALEDIR)/C
94DIRS=$(HELPDIR) $(AUTHDIR) $(LOCALEDIR) $(CDIR)
95HELPFILES=$(HTMLENTS:%=$(CDIR)/%)
96
97MSGDIR=		$(LOCALEDIR)
98MSGDIRS =       $(HELPDIR) $(AUTHDIR) $(LOCALEDIR)
99
100MSGFILES=	$(HTMLENTS)
101MSGS=		$(MSGFILES:%=$(MSGDIR)/%)
102
103FILEMODE= 0444
104$(HELPFILES) := OWNER = root
105$(HELPFILES) := GROUP = bin
106
107.KEEP_STATE:
108
109all:	$(HTMLENTS)
110
111install:	all $(DIRS) $(HELPFILES)
112
113_msg: $(MSGDIRS) $(MSGS)
114
115$(CDIR)/%: %
116	$(INS.file)
117
118$(DIRS):
119	$(INS.dir)
120
121$(MSGDIR)/%: %
122	$(INS.file)
123
124clean clobber lint:
125