xref: /titanic_41/usr/src/cmd/Makefile.targ (revision 99ba4d70906e5f67853c25ade6ebf4da3e5be4d6)
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*99ba4d70SRussell Blaine# Copyright 2008 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) :=	OWNER= root
34a192e900Samaguire$(ROOTMANIFEST) :=	GROUP= sys
35a192e900Samaguire$(ROOTMANIFEST) :=	FILEMODE= 444
36a192e900Samaguire$(ROOTSVCBIN) :=	OWNER= root
37a192e900Samaguire$(ROOTSVCBIN) :=	GROUP= bin
38a192e900Samaguire$(ROOTSVCBIN) :=	FILEMODE= 544
39a192e900Samaguire
407c478bd9Sstevel@tonic-gateclobber: clean
417c478bd9Sstevel@tonic-gate	-$(RM) $(PROG) $(CLOBBERFILES)
427c478bd9Sstevel@tonic-gate
437c478bd9Sstevel@tonic-gatelint_PROG:	$$(PROG).c
447c478bd9Sstevel@tonic-gate	$(LINT.c) $(PROG).c $(LDLIBS)
457c478bd9Sstevel@tonic-gate
467c478bd9Sstevel@tonic-gatelint_SRCS:	$$(SRCS)
477c478bd9Sstevel@tonic-gate	$(LINT.c) $(SRCS) $(LDLIBS)
487c478bd9Sstevel@tonic-gate
497c478bd9Sstevel@tonic-gate$(ROOTCMDDIR)/%: $(ROOTCMDDIR) %
507c478bd9Sstevel@tonic-gate	$(INS.file)
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gate$(ROOTCMDDIR) $(ROOTCMDDIR64):
537c478bd9Sstevel@tonic-gate	$(INS.dir)
547c478bd9Sstevel@tonic-gate
557c478bd9Sstevel@tonic-gate$(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) %
567c478bd9Sstevel@tonic-gate	$(INS.file)
577c478bd9Sstevel@tonic-gate
58a192e900Samaguire$(ROOTMANIFEST): $(ROOTMANIFESTDIR)
59a192e900Samaguire
60a192e900Samaguire$(ROOTMANIFESTDIR):
61a192e900Samaguire	$(INS.dir)
62a192e900Samaguire
63a192e900Samaguire$(ROOTMANIFESTDIR)/%: %
64a192e900Samaguire	$(INS.file)
65a192e900Samaguire
66*99ba4d70SRussell Blaine$(KSHPROG): $(KSHPROG).ksh
67*99ba4d70SRussell Blaine	$(RM) $@
68*99ba4d70SRussell Blaine	sed -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(KSHPROG).ksh > $@
69*99ba4d70SRussell Blaine	$(CHMOD) +x $@
70*99ba4d70SRussell Blaine
717c478bd9Sstevel@tonic-gate#
727c478bd9Sstevel@tonic-gate# For message catalogue files
737c478bd9Sstevel@tonic-gate#
747c478bd9Sstevel@tonic-gate_msg: $(MSGDOMAIN) $(POFILE)
757c478bd9Sstevel@tonic-gate	$(RM) $(MSGDOMAIN)/$(POFILE)
767c478bd9Sstevel@tonic-gate	$(CP) $(POFILE) $(MSGDOMAIN)
777c478bd9Sstevel@tonic-gate
787c478bd9Sstevel@tonic-gate# the build of the $(DCFILE) should be defined locally
797c478bd9Sstevel@tonic-gate# its .dc extension gets renamed to .po upon installation
807c478bd9Sstevel@tonic-gate#
817c478bd9Sstevel@tonic-gate_dc: $(DCMSGDOMAIN) $(DCFILE)
827c478bd9Sstevel@tonic-gate	$(RM) $(DCMSGDOMAIN)/$(DCFILE)
837c478bd9Sstevel@tonic-gate	$(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gate$(MSGDOMAIN) $(DCMSGDOMAIN):
867c478bd9Sstevel@tonic-gate	$(INS.dir)
87