17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5a192e900Samaguire# Common Development and Distribution License (the "License"). 6a192e900Samaguire# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 217c478bd9Sstevel@tonic-gate# 22*24fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate# Use is subject to license terms. 247c478bd9Sstevel@tonic-gate# 257c478bd9Sstevel@tonic-gate# cmd/Makefile.targ 267c478bd9Sstevel@tonic-gate# common target definitions for command builds 277c478bd9Sstevel@tonic-gate# 287c478bd9Sstevel@tonic-gate 29a192e900Samaguire# 30a192e900Samaguire# Conditional assignment of default group/owner/permissions for SMF 31a192e900Samaguire# manifests and method scripts. 32a192e900Samaguire# 33a192e900Samaguire$(ROOTMANIFEST) := FILEMODE= 444 34a192e900Samaguire$(ROOTSVCBIN) := FILEMODE= 544 35a192e900Samaguire 367c478bd9Sstevel@tonic-gateclobber: clean 377c478bd9Sstevel@tonic-gate -$(RM) $(PROG) $(CLOBBERFILES) 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gatelint_PROG: $$(PROG).c 407c478bd9Sstevel@tonic-gate $(LINT.c) $(PROG).c $(LDLIBS) 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gatelint_SRCS: $$(SRCS) 437c478bd9Sstevel@tonic-gate $(LINT.c) $(SRCS) $(LDLIBS) 447c478bd9Sstevel@tonic-gate 457c478bd9Sstevel@tonic-gate$(ROOTCMDDIR)/%: $(ROOTCMDDIR) % 467c478bd9Sstevel@tonic-gate $(INS.file) 477c478bd9Sstevel@tonic-gate 487c478bd9Sstevel@tonic-gate$(ROOTCMDDIR) $(ROOTCMDDIR64): 497c478bd9Sstevel@tonic-gate $(INS.dir) 507c478bd9Sstevel@tonic-gate 517c478bd9Sstevel@tonic-gate$(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) % 527c478bd9Sstevel@tonic-gate $(INS.file) 537c478bd9Sstevel@tonic-gate 54a192e900Samaguire$(ROOTMANIFEST): $(ROOTMANIFESTDIR) 55a192e900Samaguire 56a192e900Samaguire$(ROOTMANIFESTDIR): 57a192e900Samaguire $(INS.dir) 58a192e900Samaguire 59a192e900Samaguire$(ROOTMANIFESTDIR)/%: % 60a192e900Samaguire $(INS.file) 61a192e900Samaguire 6299ba4d70SRussell Blaine$(KSHPROG): $(KSHPROG).ksh 6399ba4d70SRussell Blaine $(RM) $@ 6499ba4d70SRussell Blaine sed -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(KSHPROG).ksh > $@ 6599ba4d70SRussell Blaine $(CHMOD) +x $@ 6699ba4d70SRussell Blaine 677c478bd9Sstevel@tonic-gate# 687c478bd9Sstevel@tonic-gate# For message catalogue files 697c478bd9Sstevel@tonic-gate# 707c478bd9Sstevel@tonic-gate_msg: $(MSGDOMAIN) $(POFILE) 717c478bd9Sstevel@tonic-gate $(RM) $(MSGDOMAIN)/$(POFILE) 727c478bd9Sstevel@tonic-gate $(CP) $(POFILE) $(MSGDOMAIN) 737c478bd9Sstevel@tonic-gate 747c478bd9Sstevel@tonic-gate# the build of the $(DCFILE) should be defined locally 757c478bd9Sstevel@tonic-gate# its .dc extension gets renamed to .po upon installation 767c478bd9Sstevel@tonic-gate# 777c478bd9Sstevel@tonic-gate_dc: $(DCMSGDOMAIN) $(DCFILE) 787c478bd9Sstevel@tonic-gate $(RM) $(DCMSGDOMAIN)/$(DCFILE) 797c478bd9Sstevel@tonic-gate $(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po) 807c478bd9Sstevel@tonic-gate 817c478bd9Sstevel@tonic-gate$(MSGDOMAIN) $(DCMSGDOMAIN): 827c478bd9Sstevel@tonic-gate $(INS.dir) 83