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 # 22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # cmd/Makefile.targ 26 # common target definitions for command builds 27 # 28 29 # 30 # Conditional assignment of default group/owner/permissions for SMF 31 # manifests and method scripts. 32 # 33 $(ROOTMANIFEST) := FILEMODE= 444 34 $(ROOTSVCBIN) := FILEMODE= 544 35 36 clobber: clean 37 -$(RM) $(PROG) $(CLOBBERFILES) 38 39 lint_PROG: $$(PROG).c 40 $(LINT.c) $(PROG).c $(LDLIBS) 41 42 lint_SRCS: $$(SRCS) 43 $(LINT.c) $(SRCS) $(LDLIBS) 44 45 $(ROOTCMDDIR)/%: $(ROOTCMDDIR) % 46 $(INS.file) 47 48 $(ROOTCMDDIR) $(ROOTCMDDIR64): 49 $(INS.dir) 50 51 $(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) % 52 $(INS.file) 53 54 $(ROOTMANIFEST): $(ROOTMANIFESTDIR) 55 56 $(ROOTMANIFESTDIR): 57 $(INS.dir) 58 59 $(ROOTMANIFESTDIR)/%: % 60 $(INS.file) 61 62 $(KSHPROG): $(KSHPROG).ksh 63 $(RM) $@ 64 sed -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(KSHPROG).ksh > $@ 65 $(CHMOD) +x $@ 66 67 # 68 # For message catalogue files 69 # 70 _msg: $(MSGDOMAIN) $(POFILE) 71 $(RM) $(MSGDOMAIN)/$(POFILE) 72 $(CP) $(POFILE) $(MSGDOMAIN) 73 74 # the build of the $(DCFILE) should be defined locally 75 # its .dc extension gets renamed to .po upon installation 76 # 77 _dc: $(DCMSGDOMAIN) $(DCFILE) 78 $(RM) $(DCMSGDOMAIN)/$(DCFILE) 79 $(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po) 80 81 $(MSGDOMAIN) $(DCMSGDOMAIN): 82 $(INS.dir) 83