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 2008 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 SmfExAcctFlowStates.html \ 71 SmfExAcctProcessStates.html \ 72 SmfExAcctTaskStates.html \ 73 SmfHeader.html \ 74 SmfInetdStates.html \ 75 SmfIPsecStates.html \ 76 SmfManageHeader.html \ 77 SmfMDNSStates.html \ 78 SmfModifyAppl.html \ 79 SmfModifyDepend.html \ 80 SmfModifyFramework.html \ 81 SmfModifyHeader.html \ 82 SmfModifyMethod.html \ 83 SmfNscdStates.html \ 84 SmfNADDStates.html \ 85 SmfNDMPStates.html \ 86 SmfNWAMStates.html \ 87 SmfPowerStates.html \ 88 SmfRoutingStates.html \ 89 SmfSendmailStates.html \ 90 SmfSshStates.html \ 91 SmfSyslogStates.html \ 92 SmfValueExAcctFlow.html \ 93 SmfValueExAcctProcess.html \ 94 SmfValueExAcctTask.html \ 95 SmfValueHeader.html \ 96 SmfValueInetd.html \ 97 SmfValueIPsec.html \ 98 SmfValueIscsitgt.html \ 99 SmfValueMDNS.html \ 100 SmfValueNADD.html \ 101 SmfValueNDMP.html \ 102 AuthReadNDMP.html \ 103 SmfValueNWAM.html \ 104 SmfValueRouting.html \ 105 SmfValueSMB.html \ 106 AuthReadSMB.html \ 107 SmfSMBFSStates.html \ 108 SmfSMBStates.html \ 109 SmfValueVscan.html \ 110 SmfVscanStates.html \ 111 SmfWpaStates.html \ 112 NetworkHeader.html \ 113 WifiConfig.html \ 114 WifiWep.html \ 115 LinkSecurity.html \ 116 IdmapRules.html \ 117 SmfIdmapStates.html \ 118 SmfValueIdmap.html \ 119 FileChown.html \ 120 FileHeader.html \ 121 FileOwner.html \ 122 LabelFileDowngrade.html \ 123 LabelFileUpgrade.html \ 124 LabelHeader.html \ 125 LabelPrint.html \ 126 LabelRange.html \ 127 LabelServer.html \ 128 LabelWinDowngrade.html \ 129 LabelWinNoView.html \ 130 LabelWinUpgrade.html \ 131 PrintAdmin.html \ 132 PrintCancel.html \ 133 PrintHeader.html \ 134 PrintList.html \ 135 PrintNoBanner.html \ 136 PrintPs.html \ 137 PrintUnlabeled.html \ 138 TNDaemon.html \ 139 TNctl.html \ 140 ValueTND.html \ 141 SysPowerMgmtHeader.html \ 142 SysPowerMgmtSuspend.html \ 143 SysPowerMgmtSuspendtoDisk.html \ 144 SysPowerMgmtSuspendtoRAM.html \ 145 SysPowerMgmtBrightness.html \ 146 SysCpuPowerMgmt.html 147 148HELPDIR=$(ROOT)/usr/lib/help 149AUTHDIR=$(HELPDIR)/auths 150LOCALEDIR=$(AUTHDIR)/locale 151CDIR=$(LOCALEDIR)/C 152DIRS=$(HELPDIR) $(AUTHDIR) $(LOCALEDIR) $(CDIR) 153HELPFILES=$(HTMLENTS:%=$(CDIR)/%) 154 155MSGDIR= $(LOCALEDIR) 156MSGDIRS = $(HELPDIR) $(AUTHDIR) $(LOCALEDIR) 157 158MSGFILES= $(HTMLENTS) 159MSGS= $(MSGFILES:%=$(MSGDIR)/%) 160 161FILEMODE= 0444 162$(HELPFILES) := OWNER = root 163$(HELPFILES) := GROUP = bin 164 165.KEEP_STATE: 166 167all: $(HTMLENTS) 168 169install: all $(DIRS) $(HELPFILES) 170 171_msg: $(MSGDIRS) $(MSGS) 172 173$(CDIR)/%: % 174 $(INS.file) 175 176$(DIRS): 177 $(INS.dir) 178 179$(MSGDIR)/%: % 180 $(INS.file) 181 182clean clobber lint: 183