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 2006 Sun Microsystems, Inc. All rights reserved. 23# Use is subject to license terms. 24# 25# ident "%Z%%M% %I% %E% SMI" 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) := OWNER= root 36$(ROOTMANIFEST) := GROUP= sys 37$(ROOTMANIFEST) := FILEMODE= 444 38$(ROOTSVCBIN) := OWNER= root 39$(ROOTSVCBIN) := GROUP= bin 40$(ROOTSVCBIN) := FILEMODE= 544 41 42clobber: clean 43 -$(RM) $(PROG) $(CLOBBERFILES) 44 45lint_PROG: $$(PROG).c 46 $(LINT.c) $(PROG).c $(LDLIBS) 47 48lint_SRCS: $$(SRCS) 49 $(LINT.c) $(SRCS) $(LDLIBS) 50 51$(ROOTCMDDIR)/%: $(ROOTCMDDIR) % 52 $(INS.file) 53 54$(ROOTCMDDIR) $(ROOTCMDDIR64): 55 $(INS.dir) 56 57$(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) % 58 $(INS.file) 59 60$(ROOTMANIFEST): $(ROOTMANIFESTDIR) 61 62$(ROOTMANIFESTDIR): 63 $(INS.dir) 64 65$(ROOTMANIFESTDIR)/%: % 66 $(INS.file) 67 68# 69# For message catalogue files 70# 71_msg: $(MSGDOMAIN) $(POFILE) 72 $(RM) $(MSGDOMAIN)/$(POFILE) 73 $(CP) $(POFILE) $(MSGDOMAIN) 74 75# the build of the $(DCFILE) should be defined locally 76# its .dc extension gets renamed to .po upon installation 77# 78_dc: $(DCMSGDOMAIN) $(DCFILE) 79 $(RM) $(DCMSGDOMAIN)/$(DCFILE) 80 $(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po) 81 82$(MSGDOMAIN) $(DCMSGDOMAIN): 83 $(INS.dir) 84