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# lib/libsecdb/help/auths/Makefile 25# 26 27include ../../../../Makefile.master 28 29HTMLENTS = \ 30 AuditConfig.html \ 31 AuditHeader.html \ 32 AuditRead.html \ 33 DevAllocHeader.html \ 34 DevAllocate.html \ 35 DevConfig.html \ 36 DevCDRW.html \ 37 DevGrant.html \ 38 DevRevoke.html \ 39 JobHeader.html \ 40 AuthJobsAdmin.html \ 41 JobsGrant.html \ 42 AuthJobsUser.html \ 43 LoginEnable.html \ 44 LoginHeader.html \ 45 LoginRemote.html \ 46 MailHeader.html \ 47 MailQueue.html \ 48 PriAdmin.html \ 49 AuthProfmgrAssign.html \ 50 AuthProfmgrDelegate.html \ 51 AuthProfmgrExecattrWrite.html \ 52 AuthProfmgrRead.html \ 53 ProfmgrHeader.html \ 54 AuthProfmgrWrite.html \ 55 AuthRoleAssign.html \ 56 AuthRoleDelegate.html \ 57 RoleHeader.html \ 58 AuthRoleWrite.html \ 59 SysDate.html \ 60 SysHeader.html \ 61 SysShutdown.html \ 62 AllSolAuthsHeader.html \ 63 SysMaintenance.html \ 64 DhcpmgrHeader.html \ 65 DhcpmgrWrite.html \ 66 BindStates.html \ 67 SmfAutofsStates.html \ 68 SmfCronStates.html \ 69 SmfExAcctFlowStates.html \ 70 SmfExAcctProcessStates.html \ 71 SmfExAcctTaskStates.html \ 72 SmfHeader.html \ 73 SmfInetdStates.html \ 74 SmfIPsecStates.html \ 75 SmfManageHeader.html \ 76 SmfMDNSStates.html \ 77 SmfModifyAppl.html \ 78 SmfModifyDepend.html \ 79 SmfModifyFramework.html \ 80 SmfModifyHeader.html \ 81 SmfModifyMethod.html \ 82 SmfNscdStates.html \ 83 SmfNADDStates.html \ 84 SmfNDMPStates.html \ 85 SmfNWAMStates.html \ 86 SmfPowerStates.html \ 87 SmfRoutingStates.html \ 88 SmfSendmailStates.html \ 89 SmfSshStates.html \ 90 SmfSyslogStates.html \ 91 SmfValueExAcctFlow.html \ 92 SmfValueExAcctProcess.html \ 93 SmfValueExAcctTask.html \ 94 SmfValueHeader.html \ 95 SmfValueInetd.html \ 96 SmfValueIPsec.html \ 97 SmfValueIscsitgt.html \ 98 SmfValueMDNS.html \ 99 SmfValueNADD.html \ 100 SmfValueNDMP.html \ 101 AuthReadNDMP.html \ 102 SmfValueNWAM.html \ 103 SmfValueRouting.html \ 104 SmfValueSMB.html \ 105 AuthReadSMB.html \ 106 SmfSMBFSStates.html \ 107 SmfSMBStates.html \ 108 SmfValueVscan.html \ 109 SmfVscanStates.html \ 110 SmfWpaStates.html \ 111 NetworkAutoconf.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