6645 sgsmsg relies on undefined behaviour of loop-scoped variables
[unleashed.git] / usr / src / cmd / Makefile.targ
blob0dcc692c786815ac770ee06d6b7fd343bcfe698e
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
23 # Use is subject to license terms.
25 # cmd/Makefile.targ
26 # common target definitions for command builds
30 # Conditional assignment of default group/owner/permissions for SMF
31 # manifests and method scripts.
33 $(ROOTMANIFEST) :=      FILEMODE= 444
34 $(ROOTSVCBIN) :=        FILEMODE= 544
36 clobber: clean
37         -$(RM) $(PROG) $(CLOBBERFILES)
39 lint_PROG:      $$(PROG).c
40         $(LINT.c) $(PROG).c $(LDLIBS)
42 lint_SRCS:      $$(SRCS)
43         $(LINT.c) $(SRCS) $(LDLIBS)
45 $(ROOTCMDDIR)/%: $(ROOTCMDDIR) %
46         $(INS.file)
48 $(ROOTCMDDIR) $(ROOTCMDDIR64):
49         $(INS.dir)
51 $(ROOTCMDDIR64)/%: $(ROOTCMDDIR64) %
52         $(INS.file)
54 $(ROOTMANIFEST): $(ROOTMANIFESTDIR)
56 $(ROOTMANIFESTDIR):
57         $(INS.dir)
59 $(ROOTMANIFESTDIR)/%: %
60         $(INS.file)
62 $(KSHPROG): $(KSHPROG).ksh
63         $(RM) $@
64         sed -e "s/TEXT_DOMAIN/${TEXT_DOMAIN}/g" $(KSHPROG).ksh > $@
65         $(CHMOD) +x $@
68 # For message catalogue files
70 _msg: $(MSGDOMAIN) $(POFILE)
71         $(RM) $(MSGDOMAIN)/$(POFILE)
72         $(CP) $(POFILE) $(MSGDOMAIN)
74 # the build of the $(DCFILE) should be defined locally
75 # its .dc extension gets renamed to .po upon installation
77 _dc: $(DCMSGDOMAIN) $(DCFILE)
78         $(RM) $(DCMSGDOMAIN)/$(DCFILE)
79         $(CP) $(DCFILE) $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
81 $(MSGDOMAIN) $(DCMSGDOMAIN):
82         $(INS.dir)