Home | History | Annotate | Download | only in profiles
      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 2009 Sun Microsystems, Inc.  All rights reserved.
     22 # Use is subject to license terms.
     23 #
     24 # lib/libsecdb/help/profiles/Makefile
     25 #
     26 
     27 include ../../../../Makefile.master
     28 
     29 HTMLENTS = \
     30 	RtAcctadm.html \
     31 	RtAll.html \
     32 	RtAuditCtrl.html \
     33 	RtAuditReview.html \
     34 	RtContractObserver.html \
     35 	RtConsUser.html \
     36 	RtCronMngmnt.html \
     37 	RtCryptoMngmnt.html \
     38 	RtExAcctFlow.html \
     39 	RtExAcctProcess.html \
     40 	RtExAcctTask.html \
     41 	RtExAcctNet.html \
     42 	RtLogMngmnt.html \
     43 	RtDeviceMngmnt.html \
     44 	RtDeviceSecurity.html \
     45 	RtDHCPMngmnt.html \
     46 	RtFileSysMngmnt.html \
     47 	RtFileSysSecurity.html \
     48 	RtFTPMngmnt.html \
     49 	RtHotplugMngmnt.html \
     50 	RtInetdMngmnt.html \
     51 	RtIPFilterMngmnt.html \
     52 	RtKerberosClntMngmnt.html \
     53 	RtKerberosSrvrMngmnt.html \
     54 	RtMailMngmnt.html \
     55 	RtMaintAndRepair.html \
     56 	RtMediaBkup.html \
     57 	RtMediaCtlg.html \
     58 	RtMediaRestore.html \
     59 	RtNDMPMngmnt.html \
     60 	RtNameServiceAdmin.html \
     61 	RtNameServiceSecure.html \
     62 	RtNetAutoconf.html \
     63 	RtNetILB.html \
     64 	RtNetIPsec.html \
     65 	RtNetMngmnt.html \
     66 	RtNetObservability.html \
     67 	RtNetSecure.html \
     68 	RtNetWifiMngmnt.html \
     69 	RtNetWifiSecure.html \
     70 	RtNetLinkSecure.html \
     71 	RtNetVRRP.html \
     72 	RtObAccessMngmnt.html \
     73 	RtPrntAdmin.html \
     74 	RtProcManagement.html \
     75 	RtReparseMngmnt.html \
     76 	RtRightsDelegate.html \
     77 	RtSMBMngmnt.html \
     78 	RtSMBFSMngmnt.html \
     79 	RtSoftwareInstall.html \
     80 	RtSysEvMngmnt.html \
     81 	RtUserMngmnt.html \
     82 	RtUserSecurity.html \
     83 	RtDatAdmin.html \
     84 	RtZFSFileSysMngmnt.html \
     85 	RtZFSStorageMngmnt.html \
     86 	RtZoneMngmnt.html \
     87 	RtInfoSec.html \
     88 	RtObjectLabelMngmnt.html \
     89 	RtOutsideAccred.html \
     90 	RtDefault.html \
     91 	RtIdmapMngmnt.html \
     92 	RtIdmapNameRulesMngmnt.html \
     93 	RtVscanMngmnt.html \
     94 	RtSysPowerMgmt.html \
     95 	RtSysPowerMgmtSuspend.html \
     96 	RtSysPowerMgmtSuspendtoDisk.html \
     97 	RtSysPowerMgmtSuspendtoRAM.html \
     98 	RtSysPowerMgmtBrightness.html \
     99 	RtCPUPowerManagement.html \
    100 	RtMMSAdmin.html \
    101 	RtMMSOper.html \
    102 	RtMMSUser.html
    103 
    104 HELPDIR =	$(ROOT)/usr/lib/help
    105 PROFDIR =	$(HELPDIR)/profiles
    106 LOCALEDIR =	$(PROFDIR)/locale
    107 CDIR =		$(LOCALEDIR)/C
    108 DIRS =		$(HELPDIR) $(PROFDIR) $(LOCALEDIR) $(CDIR)
    109 HELPFILES=$(HTMLENTS:%=$(CDIR)/%)
    110 
    111 MSGDIR=		$(LOCALEDIR)
    112 MSGDIRS =       $(HELPDIR) $(PROFDIR) $(LOCALEDIR)
    113 
    114 MSGFILES=	$(HTMLENTS)
    115 MSGS=		$(MSGFILES:%=$(MSGDIR)/%)
    116 
    117 FILEMODE = 0444
    118 
    119 .KEEP_STATE:
    120 
    121 all:	$(HTMLENTS)
    122 
    123 install:	all $(DIRS) $(HELPFILES)
    124 
    125 _msg: $(MSGDIRS) $(MSGS)
    126 
    127 $(CDIR)/%: %
    128 	$(INS.file)
    129 
    130 $(DIRS):
    131 	$(INS.dir)
    132 
    133 $(MSGDIR)/%: %
    134 	$(INS.file)
    135 
    136 clean clobber lint:
    137