xref: /illumos-gate/usr/src/cmd/Makefile.targ (revision 02b17e23)
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#
2224fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
247c478bd9Sstevel@tonic-gate#
252c601221SChris Williamson# Copyright (c) 2015 by Delphix. All rights reserved.
262c601221SChris Williamson#
277c478bd9Sstevel@tonic-gate# cmd/Makefile.targ
287c478bd9Sstevel@tonic-gate# common target definitions for command builds
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gate
31a192e900Samaguire#
32a192e900Samaguire# Conditional assignment of default group/owner/permissions for SMF
33a192e900Samaguire# manifests and method scripts.
34a192e900Samaguire#
35a192e900Samaguire$(ROOTMANIFEST) :=	FILEMODE= 444
36a192e900Samaguire$(ROOTSVCBIN) :=	FILEMODE= 544
37a192e900Samaguire
387c478bd9Sstevel@tonic-gateclobber: clean
397c478bd9Sstevel@tonic-gate	-$(RM) $(PROG) $(CLOBBERFILES)
407c478bd9Sstevel@tonic-gate
417c478bd9Sstevel@tonic-gatelint_PROG:	$$(PROG).c
427c478bd9Sstevel@tonic-gate	$(LINT.c) $(PROG).c $(LDLIBS)
437c478bd9Sstevel@tonic-gate
447c478bd9Sstevel@tonic-gatelint_SRCS:	$$(SRCS)
457c478bd9Sstevel@tonic-gate	$(LINT.c) $(SRCS) $(LDLIBS)
467c478bd9Sstevel@tonic-gate
477c478bd9Sstevel@tonic-gate$(ROOTCMDDIR)/%: $(ROOTCMDDIR) %
487c478bd9Sstevel@tonic-gate	$(INS.file)
497c478bd9Sstevel@tonic-gate
507c478bd9Sstevel@tonic-gate$(ROOTCMDDIR) $(ROOTCMDDIR64):
517c478bd9Sstevel@tonic-gate	$(INS.dir)
527c478bd9Sstevel@tonic-gate
537c478bd9Sstevel@tonic-gate$(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) %
547c478bd9Sstevel@tonic-gate	$(INS.file)
557c478bd9Sstevel@tonic-gate
56a192e900Samaguire$(ROOTMANIFEST): $(ROOTMANIFESTDIR)
57a192e900Samaguire
58a192e900Samaguire$(ROOTMANIFESTDIR):
59a192e900Samaguire	$(INS.dir)
60a192e900Samaguire
61a192e900Samaguire$(ROOTMANIFESTDIR)/%: %
62a192e900Samaguire	$(INS.file)
63a192e900Samaguire
6499ba4d70SRussell Blaine$(KSHPROG): $(KSHPROG).ksh
6599ba4d70SRussell Blaine	$(RM) $@
66*02b17e23SRichard Lowe	$(SED) -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(KSHPROG).ksh > $@
6799ba4d70SRussell Blaine	$(CHMOD) +x $@
6899ba4d70SRussell Blaine
692c601221SChris Williamson$(BASHPROG): $(BASHPROG).bash
702c601221SChris Williamson	$(RM) $@
71*02b17e23SRichard Lowe	$(SED) -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(BASHPROG).bash > $@
722c601221SChris Williamson	$(CHMOD) +x $@
732c601221SChris Williamson
747c478bd9Sstevel@tonic-gate#
757c478bd9Sstevel@tonic-gate# For message catalogue files
767c478bd9Sstevel@tonic-gate#
777c478bd9Sstevel@tonic-gate_msg: $(MSGDOMAIN) $(POFILE)
787c478bd9Sstevel@tonic-gate	$(RM) $(MSGDOMAIN)/$(POFILE)
797c478bd9Sstevel@tonic-gate	$(CP) $(POFILE) $(MSGDOMAIN)
807c478bd9Sstevel@tonic-gate
817c478bd9Sstevel@tonic-gate# the build of the $(DCFILE) should be defined locally
827c478bd9Sstevel@tonic-gate# its .dc extension gets renamed to .po upon installation
837c478bd9Sstevel@tonic-gate#
847c478bd9Sstevel@tonic-gate_dc: $(DCMSGDOMAIN) $(DCFILE)
857c478bd9Sstevel@tonic-gate	$(RM) $(DCMSGDOMAIN)/$(DCFILE)
867c478bd9Sstevel@tonic-gate	$(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
877c478bd9Sstevel@tonic-gate
887c478bd9Sstevel@tonic-gate$(MSGDOMAIN) $(DCMSGDOMAIN):
897c478bd9Sstevel@tonic-gate	$(INS.dir)
90