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 2008 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) := OWNER= root 34$(ROOTMANIFEST) := GROUP= sys 35$(ROOTMANIFEST) := FILEMODE= 444 36$(ROOTSVCBIN) := OWNER= root 37$(ROOTSVCBIN) := GROUP= bin 38$(ROOTSVCBIN) := FILEMODE= 544 39 40clobber: clean 41 -$(RM) $(PROG) $(CLOBBERFILES) 42 43lint_PROG: $$(PROG).c 44 $(LINT.c) $(PROG).c $(LDLIBS) 45 46lint_SRCS: $$(SRCS) 47 $(LINT.c) $(SRCS) $(LDLIBS) 48 49$(ROOTCMDDIR)/%: $(ROOTCMDDIR) % 50 $(INS.file) 51 52$(ROOTCMDDIR) $(ROOTCMDDIR64): 53 $(INS.dir) 54 55$(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) % 56 $(INS.file) 57 58$(ROOTMANIFEST): $(ROOTMANIFESTDIR) 59 60$(ROOTMANIFESTDIR): 61 $(INS.dir) 62 63$(ROOTMANIFESTDIR)/%: % 64 $(INS.file) 65 66$(KSHPROG): $(KSHPROG).ksh 67 $(RM) $@ 68 sed -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(KSHPROG).ksh > $@ 69 $(CHMOD) +x $@ 70 71# 72# For message catalogue files 73# 74_msg: $(MSGDOMAIN) $(POFILE) 75 $(RM) $(MSGDOMAIN)/$(POFILE) 76 $(CP) $(POFILE) $(MSGDOMAIN) 77 78# the build of the $(DCFILE) should be defined locally 79# its .dc extension gets renamed to .po upon installation 80# 81_dc: $(DCMSGDOMAIN) $(DCFILE) 82 $(RM) $(DCMSGDOMAIN)/$(DCFILE) 83 $(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po) 84 85$(MSGDOMAIN) $(DCMSGDOMAIN): 86 $(INS.dir) 87