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