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