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 502e56f3fSwesolows# Common Development and Distribution License (the "License"). 602e56f3fSwesolows# 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# 2102e56f3fSwesolows 227c478bd9Sstevel@tonic-gate# 2322337b4bSrie# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 247c478bd9Sstevel@tonic-gate# Use is subject to license terms. 257c478bd9Sstevel@tonic-gate# 267c478bd9Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 277c478bd9Sstevel@tonic-gate# 2802e56f3fSwesolows 2902e56f3fSwesolows# 307c478bd9Sstevel@tonic-gate# Makefile.master, global definitions for system source 317c478bd9Sstevel@tonic-gate# 327c478bd9Sstevel@tonic-gateROOT= /proto 337c478bd9Sstevel@tonic-gate 347c478bd9Sstevel@tonic-gate# Historically, ON builds were always done with root permissions, and the 357c478bd9Sstevel@tonic-gate# owner/group information was duplicated in the Makefiles and the packaging 367c478bd9Sstevel@tonic-gate# data and kept in sync by manual intervention. This is no longer true. 377c478bd9Sstevel@tonic-gate# The only source of this information is packaging. The proto area ($ROOT) 387c478bd9Sstevel@tonic-gate# does not have definitive onwer/group information, and no Makefile should 397c478bd9Sstevel@tonic-gate# attempt to set this. CH once toggled operations restricted to root. It 407c478bd9Sstevel@tonic-gate# is now just set to `#'. 417c478bd9Sstevel@tonic-gate# 427c478bd9Sstevel@tonic-gate# At some point in the future, CH, CHOWN, CHGRP, OWNER, and GROUP should all 437c478bd9Sstevel@tonic-gate# be stripped completely from the source base. They are kept for now until 447c478bd9Sstevel@tonic-gate# on10-based projects can merge and transition away from them. 457c478bd9Sstevel@tonic-gate# 467c478bd9Sstevel@tonic-gate# RELEASE_BUILD should be cleared for final release builds. This is completely 477c478bd9Sstevel@tonic-gate# independent of CH. NOT_RELEASE_BUILD is exactly what the name implies. 487c478bd9Sstevel@tonic-gate# 497c478bd9Sstevel@tonic-gate# INTERNAL_RELEASE_BUILD is a subset of RELEASE_BUILD. It mostly controls 507c478bd9Sstevel@tonic-gate# identification strings. Enabling RELEASE_BUILD automatically enables 517c478bd9Sstevel@tonic-gate# INTERNAL_RELEASE_BUILD. 527c478bd9Sstevel@tonic-gate# 537c478bd9Sstevel@tonic-gate# EXPORT_RELEASE_BUILD controls whether binaries are built in a form that 547c478bd9Sstevel@tonic-gate# can be released for export under a binary license. It is orthogonal to 55fb9f9b97Skupfer# the other *RELEASE_BUILD settings. ("#" means do an export release 56fb9f9b97Skupfer# build, "" means do a normal build.) 57fb9f9b97Skupfer# 58fb9f9b97Skupfer# CLOSED_BUILD controls whether we try to build files under 59fb9f9b97Skupfer# usr/closed. ("" means to build closed code, "#" means don't try to 60fb9f9b97Skupfer# build it.) Skipping the closed code implies doing an export release 61fb9f9b97Skupfer# build. 627c478bd9Sstevel@tonic-gate# 637c478bd9Sstevel@tonic-gate# STRIP_COMMENTS toggles comment section striping. Generally the same setting 647c478bd9Sstevel@tonic-gate# as INTERNAL_RELEASE_BUILD. 657c478bd9Sstevel@tonic-gate# 667c478bd9Sstevel@tonic-gate# __GNUC toggles the building of ON components using gcc and related tools. 677c478bd9Sstevel@tonic-gate# Normally set to `#', set it to `' to do gcc build. 687c478bd9Sstevel@tonic-gate# 697c478bd9Sstevel@tonic-gate# The declaration POUND_SIGN is always '#'. This is needed to get around the 707c478bd9Sstevel@tonic-gate# make feature that '#' is always a comment delimiter, even when escaped or 717c478bd9Sstevel@tonic-gate# quoted. The only way of generating this is the :sh macro mechanism. Note 727c478bd9Sstevel@tonic-gate# however that in general :sh macros should be avoided in makefiles that are 737c478bd9Sstevel@tonic-gate# widely included into other makefiles, as the resulting shell executions can 747c478bd9Sstevel@tonic-gate# cause a noticable slowdown in build times. 757c478bd9Sstevel@tonic-gate# 767c478bd9Sstevel@tonic-gatePOUND_SIGN:sh= echo \\043 777c478bd9Sstevel@tonic-gateCH= $(POUND_SIGN) 787c478bd9Sstevel@tonic-gate 797c478bd9Sstevel@tonic-gateNOT_RELEASE_BUILD= 807c478bd9Sstevel@tonic-gateINTERNAL_RELEASE_BUILD= $(POUND_SIGN) 817c478bd9Sstevel@tonic-gateRELEASE_BUILD= $(POUND_SIGN) 827c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)NOT_RELEASE_BUILD= $(POUND_SIGN) 837c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)INTERNAL_RELEASE_BUILD= 847c478bd9Sstevel@tonic-gatePATCH_BUILD= $(POUND_SIGN) 857c478bd9Sstevel@tonic-gate 86fb9f9b97Skupfer# If CLOSED_IS_PRESENT is not set, assume the closed tree is present. 87fb9f9b97SkupferCLOSED_BUILD_1= $(CLOSED_IS_PRESENT:yes=) 88fb9f9b97SkupferCLOSED_BUILD= $(CLOSED_BUILD_1:no=$(POUND_SIGN)) 89fb9f9b97Skupfer 90fb9f9b97SkupferEXPORT_RELEASE_BUILD= $(POUND_SIGN) 91fb9f9b97Skupfer$(CLOSED_BUILD)EXPORT_RELEASE_BUILD= 92fb9f9b97Skupfer 937c478bd9Sstevel@tonic-gate# SPARC_BLD is '#' for an Intel build. 947c478bd9Sstevel@tonic-gate# INTEL_BLD is '#' for a Sparc build. 957c478bd9Sstevel@tonic-gateSPARC_BLD_1= $(MACH:i386=$(POUND_SIGN)) 967c478bd9Sstevel@tonic-gateSPARC_BLD= $(SPARC_BLD_1:sparc=) 977c478bd9Sstevel@tonic-gateINTEL_BLD_1= $(MACH:sparc=$(POUND_SIGN)) 987c478bd9Sstevel@tonic-gateINTEL_BLD= $(INTEL_BLD_1:i386=) 997c478bd9Sstevel@tonic-gate 1007c478bd9Sstevel@tonic-gateSTRIP_COMMENTS= $(INTERNAL_RELEASE_BUILD) 1017c478bd9Sstevel@tonic-gate 1027c478bd9Sstevel@tonic-gate# set __GNUC= in the environment to build 32-bit with the gcc compiler. 10354836668Spetede# The default is to use the Sun Studio compiler for all processor types. 1047c478bd9Sstevel@tonic-gate__GNUC= $(POUND_SIGN) 1057c478bd9Sstevel@tonic-gate 10635a86aa1Spetede# set __GNUC64= in the environment to build 64-bit with the gcc compiler. 10754836668Spetede# Inherit the __GNUC value by default, and if that is set to $(POUND_SIGN) 10854836668Spetede# then this means use the Sun Studio compiler. 10935a86aa1Spetede__GNUC64= $(__GNUC) 1107c478bd9Sstevel@tonic-gate 11154836668Spetede# set __SSNEXT= in the enviroment to build with the 'next' release of 11254836668Spetede# the Sun Studio compiler. This will cause command line options specific 11354836668Spetede# to the 'next' version of the Sun Studio compiler to be used. 11454836668Spetede__SSNEXT= $(POUND_SIGN) 11554836668Spetede 116fb9f9b97Skupfer# CLOSED is the root of the tree that contains source which isn't released 117fb9f9b97Skupfer# as open source 118fb9f9b97SkupferCLOSED= $(SRC)/../closed 119fb9f9b97Skupfer 1207c478bd9Sstevel@tonic-gate# BUILD_TOOLS is the root of all tools including compilers. 1217c478bd9Sstevel@tonic-gate# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld. 1227c478bd9Sstevel@tonic-gate 1237c478bd9Sstevel@tonic-gateBUILD_TOOLS= /ws/onnv-tools 1247c478bd9Sstevel@tonic-gateONBLD_TOOLS= $(BUILD_TOOLS)/onbld 1257c478bd9Sstevel@tonic-gate 1267c478bd9Sstevel@tonic-gateJAVA_ROOT= /usr/java 1277c478bd9Sstevel@tonic-gate 1287c478bd9Sstevel@tonic-gateSFW_ROOT= /usr/sfw 129ebf35943SdinakSFWINCDIR= $(SFW_ROOT)/include 1307c478bd9Sstevel@tonic-gateSFWLIBDIR= $(SFW_ROOT)/lib 1317c478bd9Sstevel@tonic-gateSFWLIBDIR64= $(SFW_ROOT)/lib/$(MACH64) 1327c478bd9Sstevel@tonic-gate 1337c478bd9Sstevel@tonic-gateRPCGEN= /usr/bin/rpcgen 1347c478bd9Sstevel@tonic-gateSTABS= $(ONBLD_TOOLS)/bin/$(MACH)/stabs 135ae115bc7SmrjELFEXTRACT= $(ONBLD_TOOLS)/bin/$(MACH)/elfextract 136ae115bc7SmrjMBH_PATCH= $(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch 1377c478bd9Sstevel@tonic-gateECHO= echo 1387c478bd9Sstevel@tonic-gateINS= install 1397c478bd9Sstevel@tonic-gateTRUE= true 1407c478bd9Sstevel@tonic-gateSYMLINK= /usr/bin/ln -s 1417c478bd9Sstevel@tonic-gateLN= /usr/bin/ln 1427c478bd9Sstevel@tonic-gateCHMOD= /usr/bin/chmod 1437c478bd9Sstevel@tonic-gateCHOWN= $(TRUE) 1447c478bd9Sstevel@tonic-gateCHGRP= $(TRUE) 1457c478bd9Sstevel@tonic-gateMV= /usr/bin/mv -f 1467c478bd9Sstevel@tonic-gateRM= /usr/bin/rm -f 147f4b3ec61Sdh155122CUT= /usr/bin/cut 148f4b3ec61Sdh155122NM= /usr/ccs/bin/nm 149f4b3ec61Sdh155122DIFF= /usr/bin/diff 1507c478bd9Sstevel@tonic-gateGREP= /usr/bin/grep 1511912d2c4SwesolowsEGREP= /usr/bin/egrep 152*32bd7e59SmjnelsonKSH93= /usr/bin/ksh93 1537c478bd9Sstevel@tonic-gateSED= /usr/bin/sed 1547c478bd9Sstevel@tonic-gateNAWK= /usr/bin/nawk 1557c478bd9Sstevel@tonic-gateCP= /usr/bin/cp -f 1567c478bd9Sstevel@tonic-gateMCS= /usr/ccs/bin/mcs 1577c478bd9Sstevel@tonic-gateCAT= /usr/bin/cat 15824da5b34SrieELFDUMP= /usr/ccs/bin/elfdump 1597c478bd9Sstevel@tonic-gateM4= /usr/ccs/bin/m4 1607c478bd9Sstevel@tonic-gateSTRIP= /usr/ccs/bin/strip 1617c478bd9Sstevel@tonic-gateLEX= /usr/ccs/bin/lex 162f2fc321bSek110237FLEX= $(SFW_ROOT)/bin/flex 1637c478bd9Sstevel@tonic-gateYACC= /usr/ccs/bin/yacc 1647c478bd9Sstevel@tonic-gateCPP= /usr/lib/cpp 1657c478bd9Sstevel@tonic-gateJAVAC= $(JAVA_ROOT)/bin/javac 1667c478bd9Sstevel@tonic-gateJAVAH= $(JAVA_ROOT)/bin/javah 1677c478bd9Sstevel@tonic-gateJAVADOC= $(JAVA_ROOT)/bin/javadoc 1687c478bd9Sstevel@tonic-gateRMIC= $(JAVA_ROOT)/bin/rmic 1697c478bd9Sstevel@tonic-gateJAR= $(JAVA_ROOT)/bin/jar 1707c478bd9Sstevel@tonic-gateCTFCONVERT= $(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert 1717c478bd9Sstevel@tonic-gateCTFMERGE= $(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge 1727c478bd9Sstevel@tonic-gateCTFSTABS= $(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs 173d0e51869SamwNDRGEN= $(ONBLD_TOOLS)/bin/$(MACH)/ndrgen 1747c478bd9Sstevel@tonic-gateGENOFFSETS= $(ONBLD_TOOLS)/bin/genoffsets 1757c478bd9Sstevel@tonic-gateCTFCVTPTBL= $(ONBLD_TOOLS)/bin/ctfcvtptbl 1767c478bd9Sstevel@tonic-gateCTFFINDMOD= $(ONBLD_TOOLS)/bin/ctffindmod 1777c478bd9Sstevel@tonic-gateXREF= $(ONBLD_TOOLS)/bin/xref 1787c478bd9Sstevel@tonic-gateFIND= /usr/bin/find 1797c478bd9Sstevel@tonic-gatePERL= /usr/bin/perl 1807c478bd9Sstevel@tonic-gateSORT= /usr/bin/sort 1817c478bd9Sstevel@tonic-gateTOUCH= /usr/bin/touch 1827c478bd9Sstevel@tonic-gateWC= /usr/bin/wc 1837c478bd9Sstevel@tonic-gateXARGS= /usr/bin/xargs 1842cc2d1f4SdarrenmELFEDIT= /usr/bin/elfedit 1857c478bd9Sstevel@tonic-gateELFSIGN= /usr/bin/elfsign 1867c478bd9Sstevel@tonic-gateDTRACE= /usr/sbin/dtrace 18780ab886dSwesolowsCHECK_FNAMES= $(ONBLD_TOOLS)/bin/check_fnames 18880ab886dSwesolows 18980ab886dSwesolows# Due to 6367203, objects built with gcc will fail the namespace checks. 19080ab886dSwesolows# Remove this override once the compiler bug is fixed. 19180ab886dSwesolows$(__GNUC)CHECK_FNAMES= $(TRUE) 1927c478bd9Sstevel@tonic-gate 1937c478bd9Sstevel@tonic-gateFILEMODE= 644 1947c478bd9Sstevel@tonic-gateDIRMODE= 755 1957c478bd9Sstevel@tonic-gate 1967c478bd9Sstevel@tonic-gate# Note: owner and group for proto area objects is no longer set by 1977c478bd9Sstevel@tonic-gate# Makefiles at all. These have no real effect and are kept here for 1987c478bd9Sstevel@tonic-gate# transition purposes. They (along with CH, CHOWN, and CHGRP) should be 1997c478bd9Sstevel@tonic-gate# removed early in the s11 development cycle. 2007c478bd9Sstevel@tonic-gateOWNER= root 2017c478bd9Sstevel@tonic-gateGROUP= bin 2027c478bd9Sstevel@tonic-gate 2037c478bd9Sstevel@tonic-gate# 2047c478bd9Sstevel@tonic-gate# The version of the patch makeup table optimized for build-time use. Used 2057c478bd9Sstevel@tonic-gate# during patch builds only. 2067c478bd9Sstevel@tonic-gate$(PATCH_BUILD)PMTMO_FILE=$(SRC)/patch_makeup_table.mo 2077c478bd9Sstevel@tonic-gate 2087c478bd9Sstevel@tonic-gate# Declare that nothing should be built in parallel. 2097c478bd9Sstevel@tonic-gate# Individual Makefiles can use the .PARALLEL target to declare otherwise. 2107c478bd9Sstevel@tonic-gate.NO_PARALLEL: 2117c478bd9Sstevel@tonic-gate 2127c478bd9Sstevel@tonic-gate# For stylistic checks 2137c478bd9Sstevel@tonic-gate# 2147c478bd9Sstevel@tonic-gate# Note that the X and C checks are not used at this time and may need 2157c478bd9Sstevel@tonic-gate# modification when they are actually used. 2167c478bd9Sstevel@tonic-gate# 2177c478bd9Sstevel@tonic-gateCSTYLE= cstyle 2187c478bd9Sstevel@tonic-gateCSTYLE_TAIL= 2197c478bd9Sstevel@tonic-gateHDRCHK= hdrchk 2207c478bd9Sstevel@tonic-gateHDRCHK_TAIL= 2217c478bd9Sstevel@tonic-gateJSTYLE= jstyle 2227c478bd9Sstevel@tonic-gate 2237c478bd9Sstevel@tonic-gateDOT_H_CHECK= \ 2247c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \ 2257c478bd9Sstevel@tonic-gate $(HDRCHK) $< $(HDRCHK_TAIL) 2267c478bd9Sstevel@tonic-gate 2277c478bd9Sstevel@tonic-gateDOT_X_CHECK= \ 2287c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \ 2297c478bd9Sstevel@tonic-gate $(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL) 2307c478bd9Sstevel@tonic-gate 2317c478bd9Sstevel@tonic-gateDOT_C_CHECK= \ 2327c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL) 2337c478bd9Sstevel@tonic-gate 2347c478bd9Sstevel@tonic-gateMANIFEST_CHECK= \ 2357c478bd9Sstevel@tonic-gate @$(ECHO) "checking $<"; \ 2367c478bd9Sstevel@tonic-gate SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \ 2377c478bd9Sstevel@tonic-gate $(SRC)/cmd/svc/svccfg/svccfg-native validate $< 2387c478bd9Sstevel@tonic-gate 2397c478bd9Sstevel@tonic-gateINS.file= $(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $< 2407c478bd9Sstevel@tonic-gateINS.dir= $(INS) -s -d -m $(DIRMODE) $@ 2417c478bd9Sstevel@tonic-gate# installs and renames at once 2427c478bd9Sstevel@tonic-gate# 2437c478bd9Sstevel@tonic-gateINS.rename= $(INS.file); $(MV) $(@D)/$(<F) $@ 2447c478bd9Sstevel@tonic-gate 2457c478bd9Sstevel@tonic-gate# install a link 2467c478bd9Sstevel@tonic-gateINSLINKTARGET= $< 2477c478bd9Sstevel@tonic-gateINS.link= $(RM) $@; $(LN) $(INSLINKTARGET) $@ 2487c478bd9Sstevel@tonic-gate 2497c478bd9Sstevel@tonic-gate# MACH must be set in the shell environment per uname -p on the build host 2507c478bd9Sstevel@tonic-gate# More specific architecture variables should be set in lower makefiles. 2517c478bd9Sstevel@tonic-gate# 2527c478bd9Sstevel@tonic-gate# MACH64 is derived from MACH, and BUILD64 is set to `#' for 2537c478bd9Sstevel@tonic-gate# architectures on which we do not build 64-bit versions. 2547c478bd9Sstevel@tonic-gate# (There are no such architectures at the moment.) 2557c478bd9Sstevel@tonic-gate# 2567c478bd9Sstevel@tonic-gate# Set BUILD64=# in the environment to disable 64-bit amd64 2577c478bd9Sstevel@tonic-gate# builds on i386 machines. 2587c478bd9Sstevel@tonic-gate 2597c478bd9Sstevel@tonic-gateMACH64_1= $(MACH:sparc=sparcv9) 2607c478bd9Sstevel@tonic-gateMACH64= $(MACH64_1:i386=amd64) 2617c478bd9Sstevel@tonic-gate 2627c478bd9Sstevel@tonic-gateMACH32_1= $(MACH:sparc=sparcv7) 2637c478bd9Sstevel@tonic-gateMACH32= $(MACH32_1:i386=i86) 2647c478bd9Sstevel@tonic-gate 2657c478bd9Sstevel@tonic-gatesparc_BUILD64= 2667c478bd9Sstevel@tonic-gatei386_BUILD64= 2677c478bd9Sstevel@tonic-gateBUILD64= $($(MACH)_BUILD64) 2687c478bd9Sstevel@tonic-gate 2697c478bd9Sstevel@tonic-gate# 2707c478bd9Sstevel@tonic-gate# C compiler mode. Future compilers may change the default on us, 2717c478bd9Sstevel@tonic-gate# so force extended ANSI mode globally. Lower level makefiles can 2727c478bd9Sstevel@tonic-gate# override this by setting CCMODE. 2737c478bd9Sstevel@tonic-gate# 2747c478bd9Sstevel@tonic-gateCCMODE= -Xa 2757c478bd9Sstevel@tonic-gateCCMODE64= -Xa 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate# 2787c478bd9Sstevel@tonic-gate# C compiler verbose mode. This is so we can enable it globally, 2797c478bd9Sstevel@tonic-gate# but turn it off in the lower level makefiles of things we cannot 2807c478bd9Sstevel@tonic-gate# (or aren't going to) fix. 2817c478bd9Sstevel@tonic-gate# 2827c478bd9Sstevel@tonic-gateCCVERBOSE= -v 2837c478bd9Sstevel@tonic-gate 2847c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings 2857c478bd9Sstevel@tonic-gate# from the compiler about places the -xarch=v9 may differ from -xarch=v9c. 2867c478bd9Sstevel@tonic-gateV9ABIWARN= 2877c478bd9Sstevel@tonic-gate 2887c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register 2897c478bd9Sstevel@tonic-gate# symbols (used to detect conflicts between objects that use global registers) 2907c478bd9Sstevel@tonic-gate# we disable this now for safety, and because genunix doesn't link with 2917c478bd9Sstevel@tonic-gate# this feature (the v9 default) enabled. 2927c478bd9Sstevel@tonic-gate# 2937c478bd9Sstevel@tonic-gate# REGSYM is separate since the C++ driver syntax is different. 2947c478bd9Sstevel@tonic-gateCCREGSYM= -Wc,-Qiselect-regsym=0 2957c478bd9Sstevel@tonic-gateCCCREGSYM= -Qoption cg -Qiselect-regsym=0 2967c478bd9Sstevel@tonic-gate 297face03d9Spetede# Prevent the removal of static symbols by the SPARC code generator (cg). 298face03d9Spetede# The x86 code generator (ube) does not remove such symbols and as such 299face03d9Spetede# using this workaround is not applicable for x86. 300face03d9Spetede# 301ac204d0dSpetedeCCSTATICSYM= -Wc,-Qassembler-ounrefsym=0 3027c478bd9Sstevel@tonic-gate# 3037c478bd9Sstevel@tonic-gate# generate 32-bit addresses in the v9 kernel. Saves memory. 3047c478bd9Sstevel@tonic-gateCCABS32= -Wc,-xcode=abs32 3057c478bd9Sstevel@tonic-gate 3067c478bd9Sstevel@tonic-gate# One optimization the compiler might perform is to turn this: 3077c478bd9Sstevel@tonic-gate# #pragma weak foo 3087c478bd9Sstevel@tonic-gate# extern int foo; 3097c478bd9Sstevel@tonic-gate# if (&foo) 3107c478bd9Sstevel@tonic-gate# foo = 5; 3117c478bd9Sstevel@tonic-gate# into 3127c478bd9Sstevel@tonic-gate# foo = 5; 3137c478bd9Sstevel@tonic-gate# Since we do some of this (foo might be referenced in common kernel code 3147c478bd9Sstevel@tonic-gate# but provided only for some cpu modules or platforms), we disable this 3157c478bd9Sstevel@tonic-gate# optimization. 3167c478bd9Sstevel@tonic-gate# 3177c478bd9Sstevel@tonic-gatesparc_CCUNBOUND = -Wd,-xsafe=unboundsym 3187c478bd9Sstevel@tonic-gatei386_CCUNBOUND = 3197c478bd9Sstevel@tonic-gateCCUNBOUND = $($(MACH)_CCUNBOUND) 3207c478bd9Sstevel@tonic-gate 3217c478bd9Sstevel@tonic-gate# 3227c478bd9Sstevel@tonic-gate# compiler '-xarch' flag. This is here to centralize it and make it 3237c478bd9Sstevel@tonic-gate# overridable for testing. 3247c478bd9Sstevel@tonic-gatesparc_XARCH= -xarch=v8 3257c478bd9Sstevel@tonic-gatesparcv9_XARCH= -xarch=v9 3267c478bd9Sstevel@tonic-gatei386_XARCH= 3277c478bd9Sstevel@tonic-gateamd64_XARCH= -xarch=amd64 -Ui386 -U__i386 3287c478bd9Sstevel@tonic-gate 3297c478bd9Sstevel@tonic-gate# assembler '-xarch' flag. Different from compiler '-xarch' flag. 33060c80770Scraigmsparc_AS_XARCH= -xarch=v8plus 3317c478bd9Sstevel@tonic-gatesparcv9_AS_XARCH= -xarch=v9 3327c478bd9Sstevel@tonic-gatei386_AS_XARCH= 3337c478bd9Sstevel@tonic-gateamd64_AS_XARCH= -xarch=amd64 -P -Ui386 -U__i386 3347c478bd9Sstevel@tonic-gate 3357c478bd9Sstevel@tonic-gate# 3367c478bd9Sstevel@tonic-gate# These flags define what we need to be 'standalone' i.e. -not- part 3377c478bd9Sstevel@tonic-gate# of the rather more cosy userland environment. This basically means 3387c478bd9Sstevel@tonic-gate# the kernel. 3397c478bd9Sstevel@tonic-gate# 3407c478bd9Sstevel@tonic-gate# XX64 future versions of gcc will make -mcmodel=kernel imply -mno-red-zone 3417c478bd9Sstevel@tonic-gate# 34202e56f3fSwesolowssparc_STAND_FLAGS= -_gcc=-ffreestanding 34302e56f3fSwesolowssparcv9_STAND_FLAGS= -_gcc=-ffreestanding 3447c478bd9Sstevel@tonic-gatei386_STAND_FLAGS= -_gcc=-ffreestanding 3457c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS= -Wu,-xmodel=kernel 34654836668Spetede$(__SSNEXT)amd64_STAND_FLAGS= -xmodel=kernel 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gateSAVEARGS= -Wu,-save_args 3497c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS += $(SAVEARGS) 3507c478bd9Sstevel@tonic-gate 3517c478bd9Sstevel@tonic-gateSTAND_FLAGS_32 = $($(MACH)_STAND_FLAGS) 3527c478bd9Sstevel@tonic-gateSTAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS) 3537c478bd9Sstevel@tonic-gate 3547c478bd9Sstevel@tonic-gate# 3557c478bd9Sstevel@tonic-gate# disable the incremental linker 3567c478bd9Sstevel@tonic-gateILDOFF= -xildoff 3577c478bd9Sstevel@tonic-gate# 3587c478bd9Sstevel@tonic-gateXDEPEND= -xdepend 35922337b4bSrieXFFLAG= -xF=%all 3607c478bd9Sstevel@tonic-gateXESS= -xs 3617c478bd9Sstevel@tonic-gateXSTRCONST= -xstrconst 3627c478bd9Sstevel@tonic-gate 3637c478bd9Sstevel@tonic-gate# 3647c478bd9Sstevel@tonic-gate# turn warnings into errors (C) 3657c478bd9Sstevel@tonic-gateCERRWARN = -errtags=yes -errwarn=%all 3667c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT 3677c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_STATEMENT_NOT_REACHED 3687c478bd9Sstevel@tonic-gate 3697c478bd9Sstevel@tonic-gate# 3707c478bd9Sstevel@tonic-gate# turn warnings into errors (C++) 3717c478bd9Sstevel@tonic-gateCCERRWARN= -xwe 3727c478bd9Sstevel@tonic-gate 3737c478bd9Sstevel@tonic-gate# C99 mode 3747c478bd9Sstevel@tonic-gateC99_ENABLE= -xc99=%all 3757c478bd9Sstevel@tonic-gateC99_DISABLE= -xc99=%none 3767c478bd9Sstevel@tonic-gateC99MODE= $(C99_DISABLE) 3772df8f1d2Smike_sC99LMODE= $(C99MODE:-xc99%=-Xc99%) 3787c478bd9Sstevel@tonic-gate 3797c478bd9Sstevel@tonic-gate# In most places, assignments to these macros should be appended with += 3807c478bd9Sstevel@tonic-gate# (CPPFLAGS.master allows values to be prepended to CPPFLAGS). 381face03d9Spetedesparc_CFLAGS= $(sparc_XARCH) $(CCSTATICSYM) 382ac204d0dSpetedesparcv9_CFLAGS= $(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \ 383ac204d0dSpetede $(CCSTATICSYM) 3847c478bd9Sstevel@tonic-gatei386_CFLAGS= $(i386_XARCH) 3857c478bd9Sstevel@tonic-gateamd64_CFLAGS= $(amd64_XARCH) 3867c478bd9Sstevel@tonic-gate 3877c478bd9Sstevel@tonic-gatesparc_ASFLAGS= $(sparc_AS_XARCH) 3887c478bd9Sstevel@tonic-gatesparcv9_ASFLAGS=$(sparcv9_AS_XARCH) 3897c478bd9Sstevel@tonic-gatei386_ASFLAGS= $(i386_AS_XARCH) 3907c478bd9Sstevel@tonic-gateamd64_ASFLAGS= $(amd64_AS_XARCH) 3917c478bd9Sstevel@tonic-gate 3927c478bd9Sstevel@tonic-gate# 3937c478bd9Sstevel@tonic-gatesparc_COPTFLAG= -xO3 3947c478bd9Sstevel@tonic-gatesparcv9_COPTFLAG= -xO3 3957c478bd9Sstevel@tonic-gatei386_COPTFLAG= -O 396662492f5Ssherrymamd64_COPTFLAG= -xO3 3977c478bd9Sstevel@tonic-gate 3987c478bd9Sstevel@tonic-gateCOPTFLAG= $($(MACH)_COPTFLAG) 3997c478bd9Sstevel@tonic-gateCOPTFLAG64= $($(MACH64)_COPTFLAG) 4007c478bd9Sstevel@tonic-gate 4017c478bd9Sstevel@tonic-gate# When -g is used, the compiler globalizes static objects 4027c478bd9Sstevel@tonic-gate# (gives them a unique prefix). Disable that. 4037c478bd9Sstevel@tonic-gateCNOGLOBAL= -W0,-noglobal 4047c478bd9Sstevel@tonic-gate 40596ccc8cbSesaxe# Direct the Sun Studio compiler to use a static globalization prefix based on the 40696ccc8cbSesaxe# name of the module rather than something unique. Otherwise, objects 40796ccc8cbSesaxe# will not build deterministically, as subsequent compilations of identical 40896ccc8cbSesaxe# source will yeild objects that always look different. 40996ccc8cbSesaxe# 41096ccc8cbSesaxe# In the same spirit, this will also remove the date from the N_OPT stab. 41196ccc8cbSesaxeCGLOBALSTATIC= -W0,-xglobalstatic 41296ccc8cbSesaxe 41302e56f3fSwesolows# Normally, gcc uses indirect DWARF strings to save space. However, 41402e56f3fSwesolows# this causes relocations that ctfconvert cannot handle. Disable this. 41502e56f3fSwesolowsCDWARFSTR= -_gcc=-fno-dwarf2-indirect-strings 41602e56f3fSwesolows 41702e56f3fSwesolows# Sometimes we want all symbols and types in debugging information even 41802e56f3fSwesolows# if they aren't used. 41902e56f3fSwesolowsCALLSYMS= -W0,-xdbggen=no%usedonly 42002e56f3fSwesolows 4217c478bd9Sstevel@tonic-gate# 422ac204d0dSpetede# Default debug format for Sun Studio 11 is dwarf, so force it to 423ac204d0dSpetede# generate stabs. 424ac204d0dSpetede# 425ac204d0dSpetedeDEBUGFORMAT= -xdebugformat=stabs 426ac204d0dSpetede 427ac204d0dSpetede# 4287c478bd9Sstevel@tonic-gate# Flags used to build in debug mode for ctf generation. Bugs in the Devpro 4297c478bd9Sstevel@tonic-gate# compilers currently prevent us from building with cc-emitted DWARF. 4307c478bd9Sstevel@tonic-gate# 43102e56f3fSwesolowsCTF_FLAGS_sparc = -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR) 43202e56f3fSwesolowsCTF_FLAGS_i386 = -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR) 433ac204d0dSpetedeCTF_FLAGS = $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT) 4347c478bd9Sstevel@tonic-gate 4357c478bd9Sstevel@tonic-gate# 4367c478bd9Sstevel@tonic-gate# Flags used with genoffsets 4377c478bd9Sstevel@tonic-gate# 438bf40377cSwesolowsGOFLAGS = -_noecho \ 43902e56f3fSwesolows $(CALLSYMS) \ 44002e56f3fSwesolows $(CDWARFSTR) 4417c478bd9Sstevel@tonic-gate 4427c478bd9Sstevel@tonic-gateOFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \ 4437c478bd9Sstevel@tonic-gate $(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS) 4447c478bd9Sstevel@tonic-gate 4457c478bd9Sstevel@tonic-gateOFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \ 4467c478bd9Sstevel@tonic-gate $(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS) 4477c478bd9Sstevel@tonic-gate 4487c478bd9Sstevel@tonic-gate# 4497c478bd9Sstevel@tonic-gate# tradeoff time for space (smaller is better) 4507c478bd9Sstevel@tonic-gate# 451ac204d0dSpetedesparc_SPACEFLAG = -xspace -W0,-Lt 452ac204d0dSpetedesparcv9_SPACEFLAG = -xspace -W0,-Lt 4537c478bd9Sstevel@tonic-gatei386_SPACEFLAG = -xspace 4547c478bd9Sstevel@tonic-gateamd64_SPACEFLAG = 4557c478bd9Sstevel@tonic-gate 4567c478bd9Sstevel@tonic-gateSPACEFLAG = $($(MACH)_SPACEFLAG) 4577c478bd9Sstevel@tonic-gateSPACEFLAG64 = $($(MACH64)_SPACEFLAG) 4587c478bd9Sstevel@tonic-gate 459ac204d0dSpetede# 460ac204d0dSpetede# The Sun Studio 11 compiler has changed the behaviour of integer 461ac204d0dSpetede# wrap arounds and so a flag is needed to use the legacy behaviour 462ac204d0dSpetede# (without this flag panics/hangs could be exposed within the source). 463ac204d0dSpetede# 464ac204d0dSpetedesparc_IROPTFLAG = -W2,-xwrap_int 465ac204d0dSpetedesparcv9_IROPTFLAG = -W2,-xwrap_int 466ac204d0dSpetedei386_IROPTFLAG = 467ac204d0dSpetedeamd64_IROPTFLAG = 468ac204d0dSpetede 469ac204d0dSpetedeIROPTFLAG = $($(MACH)_IROPTFLAG) 470ac204d0dSpetedeIROPTFLAG64 = $($(MACH64)_IROPTFLAG) 471ac204d0dSpetede 4727c478bd9Sstevel@tonic-gatesparc_XREGSFLAG = -xregs=no%appl 4737c478bd9Sstevel@tonic-gatesparcv9_XREGSFLAG = -xregs=no%appl 4747c478bd9Sstevel@tonic-gatei386_XREGSFLAG = 4757c478bd9Sstevel@tonic-gateamd64_XREGSFLAG = 4767c478bd9Sstevel@tonic-gate 4777c478bd9Sstevel@tonic-gateXREGSFLAG = $($(MACH)_XREGSFLAG) 4787c478bd9Sstevel@tonic-gateXREGSFLAG64 = $($(MACH64)_XREGSFLAG) 4797c478bd9Sstevel@tonic-gate 4807c478bd9Sstevel@tonic-gateCFLAGS= $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \ 481ac204d0dSpetede $(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \ 48296ccc8cbSesaxe $(CGLOBALSTATIC) 4837c478bd9Sstevel@tonic-gateCFLAGS64= $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \ 484ac204d0dSpetede $(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \ 48596ccc8cbSesaxe $(CGLOBALSTATIC) 486ac204d0dSpetede# 487ac204d0dSpetede# Flags that are used to build parts of the code that are subsequently 488ac204d0dSpetede# run on the build machine (also known as the NATIVE_BUILD). 489ac204d0dSpetede# 4907c478bd9Sstevel@tonic-gateNATIVE_CFLAGS= $(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \ 49196ccc8cbSesaxe $(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \ 492ac204d0dSpetede $(IROPTFLAG) $(CGLOBALSTATIC) 4937c478bd9Sstevel@tonic-gate 4947c478bd9Sstevel@tonic-gateDTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\" # For messaging. 4957c478bd9Sstevel@tonic-gateDTS_ERRNO=-D_TS_ERRNO 4967c478bd9Sstevel@tonic-gateCPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \ 4977c478bd9Sstevel@tonic-gate $(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) 4987c478bd9Sstevel@tonic-gateCPPFLAGS= $(CPPFLAGS.master) 4997c478bd9Sstevel@tonic-gateAS_CPPFLAGS= $(CPPFLAGS.master) 5007c478bd9Sstevel@tonic-gateJAVAFLAGS= -deprecation 5017c478bd9Sstevel@tonic-gate 5027c478bd9Sstevel@tonic-gate# 5037c478bd9Sstevel@tonic-gate# For source message catalogue 5047c478bd9Sstevel@tonic-gate# 5057c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .i .po 5067c478bd9Sstevel@tonic-gateMSGROOT= $(ROOT)/catalog 5077c478bd9Sstevel@tonic-gateMSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN) 5087c478bd9Sstevel@tonic-gateMSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE) 5097c478bd9Sstevel@tonic-gateDCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN) 5107c478bd9Sstevel@tonic-gateDCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po) 5117c478bd9Sstevel@tonic-gate 5127c478bd9Sstevel@tonic-gateCLOBBERFILES += $(POFILE) $(POFILES) 5137c478bd9Sstevel@tonic-gateCOMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS) 5147c478bd9Sstevel@tonic-gateXGETTEXT= /usr/bin/xgettext 5157c478bd9Sstevel@tonic-gateXGETFLAGS= -c TRANSLATION_NOTE 5167c478bd9Sstevel@tonic-gateBUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\ 5177c478bd9Sstevel@tonic-gate $(RM) $@ ;\ 518a778b211Scarlsonj $(SED) "/^domain/d" < $(<F).po > $@ ;\ 5197c478bd9Sstevel@tonic-gate $(RM) $(<F).po $<.i 520a778b211Scarlsonj 5217c478bd9Sstevel@tonic-gate# 5227c478bd9Sstevel@tonic-gate# This is overwritten by local Makefile when PROG is a list. 5237c478bd9Sstevel@tonic-gate# 5247c478bd9Sstevel@tonic-gatePOFILE= $(PROG).po 5257c478bd9Sstevel@tonic-gate 5267c478bd9Sstevel@tonic-gatesparc_CCFLAGS= -cg92 -compat=4 \ 5277c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 5287c478bd9Sstevel@tonic-gate $(CCERRWARN) 5297c478bd9Sstevel@tonic-gatesparcv9_CCFLAGS= $(sparcv9_XARCH) -dalign -compat=5 \ 5307c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 5317c478bd9Sstevel@tonic-gate -Qoption ccfe -features=no%conststrings \ 5327c478bd9Sstevel@tonic-gate $(CCCREGSYM) \ 5337c478bd9Sstevel@tonic-gate $(CCERRWARN) 5347c478bd9Sstevel@tonic-gatei386_CCFLAGS= -compat=4 \ 5357c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 5367c478bd9Sstevel@tonic-gate -Qoption ccfe -features=no%conststrings \ 5377c478bd9Sstevel@tonic-gate $(CCERRWARN) 5387c478bd9Sstevel@tonic-gateamd64_CCFLAGS= $(amd64_XARCH) -compat=5 \ 5397c478bd9Sstevel@tonic-gate -Qoption ccfe -messages=no%anachronism \ 5407c478bd9Sstevel@tonic-gate -Qoption ccfe -features=no%conststrings \ 5417c478bd9Sstevel@tonic-gate $(CCERRWARN) 5427c478bd9Sstevel@tonic-gate 5437c478bd9Sstevel@tonic-gatesparc_CCOPTFLAG= -O 5447c478bd9Sstevel@tonic-gatesparcv9_CCOPTFLAG= -O 5457c478bd9Sstevel@tonic-gatei386_CCOPTFLAG= -O 5467c478bd9Sstevel@tonic-gateamd64_CCOPTFLAG= -O 5477c478bd9Sstevel@tonic-gate 5487c478bd9Sstevel@tonic-gateCCOPTFLAG= $($(MACH)_CCOPTFLAG) 5497c478bd9Sstevel@tonic-gateCCOPTFLAG64= $($(MACH64)_CCOPTFLAG) 5507c478bd9Sstevel@tonic-gateCCFLAGS= $(CCOPTFLAG) $($(MACH)_CCFLAGS) 5517c478bd9Sstevel@tonic-gateCCFLAGS64= $(CCOPTFLAG64) $($(MACH64)_CCFLAGS) 55224da5b34Srie 5537c478bd9Sstevel@tonic-gate# 55424da5b34Srie# Various mapfiles that are used throughout the build, and delivered to 55524da5b34Srie# /usr/lib/ld. 5567c478bd9Sstevel@tonic-gate# 55724da5b34SrieMAPFILE.NED_i386 = $(SRC)/common/mapfiles/i386/map.noexdata 55824da5b34SrieMAPFILE.NED_sparc = 55924da5b34SrieMAPFILE.NED = $(MAPFILE.NED_$(MACH)) 56024da5b34SrieMAPFILE.PGA = $(SRC)/common/mapfiles/$(MACH)/map.pagealign 56124da5b34SrieMAPFILE.NES = $(SRC)/common/mapfiles/common/map.noexstk 56224da5b34SrieMAPFILE.FLT = $(SRC)/common/mapfiles/common/map.filter 563df4628cbSrieMAPFILE.LEX = $(SRC)/common/mapfiles/common/map.lex.yy 56424da5b34Srie 5657c478bd9Sstevel@tonic-gate# 56624da5b34Srie# Generated mapfiles that are compiler specific, and used throughout the 56724da5b34Srie# build. These mapfiles are not delivered in /usr/lib/ld. 56824da5b34Srie# 56924da5b34SrieMAPFILE.NGB_sparc= $(SRC)/common/mapfiles/gen/sparc_cc_map.noexeglobs 57024da5b34Srie$(__GNUC64)MAPFILE.NGB_sparc= \ 57124da5b34Srie $(SRC)/common/mapfiles/gen/sparc_gcc_map.noexeglobs 57224da5b34SrieMAPFILE.NGB_sparcv9= $(SRC)/common/mapfiles/gen/sparcv9_cc_map.noexeglobs 57324da5b34Srie$(__GNUC64)MAPFILE.NGB_sparcv9= \ 57424da5b34Srie $(SRC)/common/mapfiles/gen/sparcv9_gcc_map.noexeglobs 57524da5b34SrieMAPFILE.NGB_i386= $(SRC)/common/mapfiles/gen/i386_cc_map.noexeglobs 57624da5b34Srie$(__GNUC64)MAPFILE.NGB_i386= \ 57724da5b34Srie $(SRC)/common/mapfiles/gen/i386_gcc_map.noexeglobs 57824da5b34SrieMAPFILE.NGB_amd64= $(SRC)/common/mapfiles/gen/amd64_cc_map.noexeglobs 57924da5b34Srie$(__GNUC64)MAPFILE.NGB_amd64= \ 58024da5b34Srie $(SRC)/common/mapfiles/gen/amd64_gcc_map.noexeglobs 58124da5b34SrieMAPFILE.NGB = $(MAPFILE.NGB_$(MACH)) 58224da5b34Srie 58324da5b34Srie# 58424da5b34Srie# A generic interface mapfile name, used by various dynamic objects to define 58524da5b34Srie# the interfaces and interposers the object must export. 58624da5b34Srie# 58724da5b34SrieMAPFILE.INT = mapfile-intf 58824da5b34Srie 5897c478bd9Sstevel@tonic-gate# 5907c478bd9Sstevel@tonic-gate# LDLIBS32 can be set in the environment to override the following assignment. 5917c478bd9Sstevel@tonic-gate# LDLIBS64 can be set to override the assignment made in Makefile.master.64. 5927c478bd9Sstevel@tonic-gate# These environment settings make sure that no libraries are searched outside 5937c478bd9Sstevel@tonic-gate# of the local workspace proto area: 5947c478bd9Sstevel@tonic-gate# LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib 5957c478bd9Sstevel@tonic-gate# LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64 5967c478bd9Sstevel@tonic-gate# 5977c478bd9Sstevel@tonic-gateLDLIBS32 = $(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3) 5987c478bd9Sstevel@tonic-gateLDLIBS.cmd = $(LDLIBS32) 5997c478bd9Sstevel@tonic-gateLDLIBS.lib = $(LDLIBS32) 6007c478bd9Sstevel@tonic-gate# 6017c478bd9Sstevel@tonic-gate# Define compilation macros. 6027c478bd9Sstevel@tonic-gate# 6037c478bd9Sstevel@tonic-gateCOMPILE.c= $(CC) $(CFLAGS) $(CPPFLAGS) -c 6047c478bd9Sstevel@tonic-gateCOMPILE64.c= $(CC) $(CFLAGS64) $(CPPFLAGS) -c 6057c478bd9Sstevel@tonic-gateCOMPILE.cc= $(CCC) $(CCFLAGS) $(CPPFLAGS) -c 6067c478bd9Sstevel@tonic-gateCOMPILE64.cc= $(CCC) $(CCFLAGS64) $(CPPFLAGS) -c 6077c478bd9Sstevel@tonic-gateCOMPILE.s= $(AS) $(ASFLAGS) $(AS_CPPFLAGS) 6087c478bd9Sstevel@tonic-gateCOMPILE64.s= $(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS) 6097c478bd9Sstevel@tonic-gateCOMPILE.d= $(DTRACE) -G -32 6107c478bd9Sstevel@tonic-gateCOMPILE64.d= $(DTRACE) -G -64 6117c478bd9Sstevel@tonic-gate 6127c478bd9Sstevel@tonic-gateCLASSPATH= . 6137c478bd9Sstevel@tonic-gateCOMPILE.java= $(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH) 6147c478bd9Sstevel@tonic-gate 6157c478bd9Sstevel@tonic-gate# 6167c478bd9Sstevel@tonic-gate# Link time macros 6177c478bd9Sstevel@tonic-gate# 6187c478bd9Sstevel@tonic-gateCCNEEDED = -lC 619010b217aSwesolows$(__GNUC)CCNEEDED = -L$(SFWLIBDIR) -R$(SFWLIBDIR) -lstdc++ -lgcc_s 6207c478bd9Sstevel@tonic-gate 6217c478bd9Sstevel@tonic-gateLINK.c= $(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) 6227c478bd9Sstevel@tonic-gateLINK64.c= $(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS) 6237c478bd9Sstevel@tonic-gateNORUNPATH= -norunpath -nolib 6247c478bd9Sstevel@tonic-gateLINK.cc= $(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \ 6257c478bd9Sstevel@tonic-gate $(LDFLAGS) $(CCNEEDED) 6267c478bd9Sstevel@tonic-gateLINK64.cc= $(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \ 6277c478bd9Sstevel@tonic-gate $(LDFLAGS) $(CCNEEDED) 6287c478bd9Sstevel@tonic-gate 6297c478bd9Sstevel@tonic-gate# 6307c478bd9Sstevel@tonic-gate# lint macros 6317c478bd9Sstevel@tonic-gate# 6327c478bd9Sstevel@tonic-gate# Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once 6337c478bd9Sstevel@tonic-gate# ON is built with a version of lint that has the fix for 4484186. 6347c478bd9Sstevel@tonic-gate# 6357c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS = -errtags=yes -s 6367c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_PTRDIFF_OVERFLOW 6377c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_ASSIGN_NARROW_CONV 6387c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -U__PRAGMA_REDEFINE_EXTNAME 6397c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += $(C99LMODE) 6407c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -errsecurity=$(SECLEVEL) 6417c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_SEC_CREAT_WITHOUT_EXCL 6427c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_SEC_FORBIDDEN_WARN_CREAT 6437c478bd9Sstevel@tonic-gate# XX64 -- really only needed for amd64 lint 6447c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_ASSIGN_INT_TO_SMALL_INT 6457c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_CAST_INT_CONST_TO_SMALL_INT 6467c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_CAST_INT_TO_SMALL_INT 6477c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_CAST_TO_PTR_FROM_INT 6487c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_COMP_INT_WITH_LARGE_INT 6497c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_INTEGRAL_CONST_EXP_EXPECTED 6507c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_PASS_INT_TO_SMALL_INT 6517c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS += -erroff=E_PTR_CONV_LOSES_BITS 6527c478bd9Sstevel@tonic-gate 6537c478bd9Sstevel@tonic-gateSECLEVEL= core 6547c478bd9Sstevel@tonic-gateLINT.c= $(LINT) $(LINTFLAGS) $(CPPFLAGS) $(ALWAYS_LINT_DEFS) 6557c478bd9Sstevel@tonic-gateLINT64.c= $(LINT) $(LINTFLAGS64) $(CPPFLAGS) $(ALWAYS_LINT_DEFS) 6567c478bd9Sstevel@tonic-gateLINT.s= $(LINT.c) 6577c478bd9Sstevel@tonic-gate 6587c478bd9Sstevel@tonic-gate# For some future builds, NATIVE_MACH and MACH might be different. 6597c478bd9Sstevel@tonic-gate# Therefore, NATIVE_MACH needs to be redefined in the 6607c478bd9Sstevel@tonic-gate# environment as `uname -p` to override this macro. 6617c478bd9Sstevel@tonic-gate# 6627c478bd9Sstevel@tonic-gate# For now at least, we cross-compile amd64 on i386 machines. 6637c478bd9Sstevel@tonic-gateNATIVE_MACH= $(MACH:amd64=i386) 6647c478bd9Sstevel@tonic-gate 6657c478bd9Sstevel@tonic-gate# Define native compilation macros 6667c478bd9Sstevel@tonic-gate# 6677c478bd9Sstevel@tonic-gate 6687c478bd9Sstevel@tonic-gate# Base directory where compilers are loaded. 6697c478bd9Sstevel@tonic-gate# Defined here so it can be overridden by developer. 6707c478bd9Sstevel@tonic-gate# 6717c478bd9Sstevel@tonic-gateSPRO_ROOT= $(BUILD_TOOLS)/SUNWspro 672ac204d0dSpetedeSPRO_VROOT= $(SPRO_ROOT)/SS11 6737c478bd9Sstevel@tonic-gateGNU_ROOT= $(SFW_ROOT) 6747c478bd9Sstevel@tonic-gate 6757c478bd9Sstevel@tonic-gate# Specify platform compiler versions for languages 6767c478bd9Sstevel@tonic-gate# that we use (currently only c and c++). 6777c478bd9Sstevel@tonic-gate# 678bf40377cSwesolowssparc_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc 679bf40377cSwesolows$(__GNUC)sparc_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc 680bf40377cSwesolowssparc_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC 681bf40377cSwesolows$(__GNUC)sparc_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++ 6827c478bd9Sstevel@tonic-gatesparc_CPP= /usr/ccs/lib/cpp 6837c478bd9Sstevel@tonic-gatesparc_AS= /usr/ccs/bin/as -xregsym=no 6847c478bd9Sstevel@tonic-gatesparc_LD= /usr/ccs/bin/ld 6857c478bd9Sstevel@tonic-gatesparc_LINT= $(SPRO_VROOT)/bin/lint 6867c478bd9Sstevel@tonic-gate 687bf40377cSwesolowssparcv9_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc 688bf40377cSwesolows$(__GNUC64)sparcv9_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc 689bf40377cSwesolowssparcv9_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC 690bf40377cSwesolows$(__GNUC64)sparcv9_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++ 6917c478bd9Sstevel@tonic-gatesparcv9_CPP= /usr/ccs/lib/cpp 6927c478bd9Sstevel@tonic-gatesparcv9_AS= /usr/ccs/bin/as -xregsym=no 6937c478bd9Sstevel@tonic-gatesparcv9_LD= /usr/ccs/bin/ld 6947c478bd9Sstevel@tonic-gatesparcv9_LINT= $(SPRO_VROOT)/bin/lint 6957c478bd9Sstevel@tonic-gate 6967c478bd9Sstevel@tonic-gate# We compile 32-bit objects with cc by default 6977c478bd9Sstevel@tonic-gatei386_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc 6987c478bd9Sstevel@tonic-gate$(__GNUC)i386_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc 6997c478bd9Sstevel@tonic-gatei386_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC 7007c478bd9Sstevel@tonic-gate$(__GNUC)i386_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++ 7017c478bd9Sstevel@tonic-gatei386_CPP= /usr/ccs/lib/cpp 7027c478bd9Sstevel@tonic-gatei386_AS= /usr/ccs/bin/as 7037c478bd9Sstevel@tonic-gate$(__GNUC)i386_AS= $(ONBLD_TOOLS)/bin/$(MACH)/aw 7047c478bd9Sstevel@tonic-gatei386_LD= /usr/ccs/bin/ld 7057c478bd9Sstevel@tonic-gatei386_LINT= $(SPRO_VROOT)/bin/lint 7067c478bd9Sstevel@tonic-gate 7077c478bd9Sstevel@tonic-gate# We compile 64-bit objects with gcc 7087c478bd9Sstevel@tonic-gateamd64_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc 7097c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc 7107c478bd9Sstevel@tonic-gateamd64_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC 7117c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CCC= $(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++ 7127c478bd9Sstevel@tonic-gateamd64_CPP= /usr/ccs/lib/cpp 7137c478bd9Sstevel@tonic-gateamd64_AS= $(ONBLD_TOOLS)/bin/$(MACH)/aw 7147c478bd9Sstevel@tonic-gateamd64_LD= /usr/ccs/bin/ld 71535a86aa1Spetedeamd64_LINT= $(SPRO_VROOT)/bin/lint 7167c478bd9Sstevel@tonic-gate 7177c478bd9Sstevel@tonic-gateNATIVECC= $($(NATIVE_MACH)_CC) 7187c478bd9Sstevel@tonic-gateNATIVECCC= $($(NATIVE_MACH)_CCC) 7197c478bd9Sstevel@tonic-gateNATIVECPP= $($(NATIVE_MACH)_CPP) 7207c478bd9Sstevel@tonic-gateNATIVEAS= $($(NATIVE_MACH)_AS) 7217c478bd9Sstevel@tonic-gateNATIVELD= $($(NATIVE_MACH)_LD) 7227c478bd9Sstevel@tonic-gateNATIVELINT= $($(NATIVE_MACH)_LINT) 7237c478bd9Sstevel@tonic-gate 7247c478bd9Sstevel@tonic-gate# 7257c478bd9Sstevel@tonic-gate# Makefile.master.64 overrides these settings 7267c478bd9Sstevel@tonic-gate# 7277c478bd9Sstevel@tonic-gateCC= $(NATIVECC) 7287c478bd9Sstevel@tonic-gateCCC= $(NATIVECCC) 7297c478bd9Sstevel@tonic-gateCPP= $(NATIVECPP) 7307c478bd9Sstevel@tonic-gateAS= $(NATIVEAS) 7317c478bd9Sstevel@tonic-gateLD= $(NATIVELD) 7327c478bd9Sstevel@tonic-gateLINT= $(NATIVELINT) 7337c478bd9Sstevel@tonic-gate 73402e56f3fSwesolows# The real compilers used for this build 73502e56f3fSwesolowsCW_CC_CMD= $(CC) -_compiler 73602e56f3fSwesolowsCW_CCC_CMD= $(CCC) -_compiler 73702e56f3fSwesolowsREAL_CC= $(CW_CC_CMD:sh) 73802e56f3fSwesolowsREAL_CCC= $(CW_CCC_CMD:sh) 73902e56f3fSwesolows 7407c478bd9Sstevel@tonic-gate# Pass -Y flag to cpp (method of which is release-dependent) 7417c478bd9Sstevel@tonic-gateCCYFLAG= -Y I, 7427c478bd9Sstevel@tonic-gate 7437c478bd9Sstevel@tonic-gateBDIRECT= -Bdirect 7447c478bd9Sstevel@tonic-gateBDYNAMIC= -Bdynamic 7457c478bd9Sstevel@tonic-gateBLOCAL= -Blocal 74624da5b34SrieBNODIRECT= -Bnodirect 7477c478bd9Sstevel@tonic-gateBREDUCE= -Breduce 7487c478bd9Sstevel@tonic-gateBSTATIC= -Bstatic 7497c478bd9Sstevel@tonic-gate 7507c478bd9Sstevel@tonic-gateZCOMBRELOC= -zcombreloc 7517c478bd9Sstevel@tonic-gateZDEFS= -zdefs 75224da5b34SrieZDIRECT= -zdirect 7537c478bd9Sstevel@tonic-gateZIGNORE= -zignore 7547c478bd9Sstevel@tonic-gateZINITFIRST= -zinitfirst 7557c478bd9Sstevel@tonic-gateZINTERPOSE= -zinterpose 7567c478bd9Sstevel@tonic-gateZLAZYLOAD= -zlazyload 7577c478bd9Sstevel@tonic-gateZLOADFLTR= -zloadfltr 7587c478bd9Sstevel@tonic-gateZMULDEFS= -zmuldefs 7597c478bd9Sstevel@tonic-gateZNODEFAULTLIB= -znodefaultlib 7607c478bd9Sstevel@tonic-gateZNODEFS= -znodefs 7617c478bd9Sstevel@tonic-gateZNODELETE= -znodelete 7627c478bd9Sstevel@tonic-gateZNODLOPEN= -znodlopen 7637c478bd9Sstevel@tonic-gateZNODUMP= -znodump 7647c478bd9Sstevel@tonic-gateZNOLAZYLOAD= -znolazyload 76502e56f3fSwesolowsZNORELOC= -znoreloc 7667c478bd9Sstevel@tonic-gateZNOVERSION= -znoversion 76722337b4bSrieZRECORD= -zrecord 7687c478bd9Sstevel@tonic-gateZREDLOCSYM= -zredlocsym 7697c478bd9Sstevel@tonic-gateZTEXT= -ztext 77024da5b34SrieZVERBOSE= -zverbose 7717c478bd9Sstevel@tonic-gate 7727c478bd9Sstevel@tonic-gateGSHARED= -G 7737c478bd9Sstevel@tonic-gateCCMT= -mt 7747c478bd9Sstevel@tonic-gate 7757c478bd9Sstevel@tonic-gate# Handle different PIC models on different ISAs 7767c478bd9Sstevel@tonic-gate# (May be overridden by lower-level Makefiles) 7777c478bd9Sstevel@tonic-gate 7787c478bd9Sstevel@tonic-gatesparc_C_PICFLAGS = -K pic 7797c478bd9Sstevel@tonic-gatesparcv9_C_PICFLAGS = -K pic 7807c478bd9Sstevel@tonic-gatei386_C_PICFLAGS = -K pic 7817c478bd9Sstevel@tonic-gateamd64_C_PICFLAGS = -K pic 7827c478bd9Sstevel@tonic-gateC_PICFLAGS = $($(MACH)_C_PICFLAGS) 7837c478bd9Sstevel@tonic-gateC_PICFLAGS64 = $($(MACH64)_C_PICFLAGS) 7847c478bd9Sstevel@tonic-gate 7857c478bd9Sstevel@tonic-gatesparc_C_BIGPICFLAGS = -K PIC 7867c478bd9Sstevel@tonic-gatesparcv9_C_BIGPICFLAGS = -K PIC 7877c478bd9Sstevel@tonic-gatei386_C_BIGPICFLAGS = -K PIC 7887c478bd9Sstevel@tonic-gateamd64_C_BIGPICFLAGS = -K PIC 7897c478bd9Sstevel@tonic-gateC_BIGPICFLAGS = $($(MACH)_C_BIGPICFLAGS) 7907c478bd9Sstevel@tonic-gateC_BIGPICFLAGS64 = $($(MACH64)_C_BIGPICFLAGS) 7917c478bd9Sstevel@tonic-gate 7927c478bd9Sstevel@tonic-gate# CC requires there to be no space between '-K' and 'pic' or 'PIC'. 7937c478bd9Sstevel@tonic-gatesparc_CC_PICFLAGS = -Kpic 7947c478bd9Sstevel@tonic-gatesparcv9_CC_PICFLAGS = -KPIC 7957c478bd9Sstevel@tonic-gatei386_CC_PICFLAGS = -Kpic 7967c478bd9Sstevel@tonic-gateamd64_CC_PICFLAGS = -Kpic 7977c478bd9Sstevel@tonic-gateCC_PICFLAGS = $($(MACH)_CC_PICFLAGS) 7987c478bd9Sstevel@tonic-gateCC_PICFLAGS64 = $($(MACH64)_CC_PICFLAGS) 7997c478bd9Sstevel@tonic-gate 8007c478bd9Sstevel@tonic-gateAS_PICFLAGS= $(C_PICFLAGS) 8017c478bd9Sstevel@tonic-gateAS_BIGPICFLAGS= $(C_BIGPICFLAGS) 8027c478bd9Sstevel@tonic-gate 8037c478bd9Sstevel@tonic-gate# 8047c478bd9Sstevel@tonic-gate# Default label for CTF sections 8057c478bd9Sstevel@tonic-gate# 8067c478bd9Sstevel@tonic-gateCTFCVTFLAGS= -i -L VERSION 8077c478bd9Sstevel@tonic-gate 8087c478bd9Sstevel@tonic-gate# 8097c478bd9Sstevel@tonic-gate# Override to pass module-specific flags to ctfmerge. Currently used 8107c478bd9Sstevel@tonic-gate# only by krtld to turn on fuzzy matching. 8117c478bd9Sstevel@tonic-gate# 8127c478bd9Sstevel@tonic-gateCTFMRGFLAGS= 8137c478bd9Sstevel@tonic-gate 8147c478bd9Sstevel@tonic-gateCTFCONVERT_O = $(CTFCONVERT) $(CTFCVTFLAGS) $@ 8157c478bd9Sstevel@tonic-gate 8167c478bd9Sstevel@tonic-gateELFSIGN_O= $(TRUE) 8177c478bd9Sstevel@tonic-gateELFSIGN_CRYPTO= $(ELFSIGN_O) 8187c478bd9Sstevel@tonic-gateELFSIGN_OBJECT= $(ELFSIGN_O) 819261c0e94Sgm89044ELFSIGN_CRYPTO_LIMITED= $(ELFSIGN_O) 820fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_O = $(ELFSIGN) 821316944b9Sjohnz$(EXPORT_RELEASE_BUILD)ELFSIGN_CFNAME = SUNWosnetCF 822fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_KEY = \ 823316944b9Sjohnz $(CLOSED)/cmd/cmd-crypto/etc/keys/$(ELFSIGN_CFNAME) 824fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_CERT= \ 825316944b9Sjohnz $(CLOSED)/cmd/cmd-crypto/etc/certs/$(ELFSIGN_CFNAME) 826316944b9Sjohnz$(EXPORT_RELEASE_BUILD)ELFSIGN_CLNAME = SUNWosnetCFLimited 82744961713Sgirish$(EXPORT_RELEASE_BUILD)ELFSIGN_KEY_LIMITED = \ 828316944b9Sjohnz $(CLOSED)/cmd/cmd-crypto/etc/keys/$(ELFSIGN_CLNAME) 82944961713Sgirish$(EXPORT_RELEASE_BUILD)ELFSIGN_CERT_LIMITED= \ 830316944b9Sjohnz $(CLOSED)/cmd/cmd-crypto/etc/certs/$(ELFSIGN_CLNAME) 831316944b9Sjohnz$(EXPORT_RELEASE_BUILD)ELFSIGN_SENAME = SUNWosnetSE 832fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_SEKEY = \ 833316944b9Sjohnz $(CLOSED)/cmd/cmd-crypto/etc/keys/$(ELFSIGN_SENAME) 834fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_SECERT= \ 835316944b9Sjohnz $(CLOSED)/cmd/cmd-crypto/etc/certs/$(ELFSIGN_SENAME) 836fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_CRYPTO= $(ELFSIGN_O) sign \ 837fb9f9b97Skupfer $(ELFSIGN_FORMAT_OPTION) \ 8387c478bd9Sstevel@tonic-gate -k $(ELFSIGN_KEY) -c $(ELFSIGN_CERT) -e $@ 83944961713Sgirish$(EXPORT_RELEASE_BUILD)ELFSIGN_CRYPTO_LIMITED= $(ELFSIGN_O) sign \ 84044961713Sgirish $(ELFSIGN_FORMAT_OPTION) \ 841316944b9Sjohnz -k $(ELFSIGN_KEY_LIMITED) -c $(ELFSIGN_CERT_LIMITED) \ 842316944b9Sjohnz -e $@ 843fb9f9b97Skupfer$(EXPORT_RELEASE_BUILD)ELFSIGN_OBJECT= $(ELFSIGN_O) sign \ 844fb9f9b97Skupfer $(ELFSIGN_FORMAT_OPTION) \ 8457c478bd9Sstevel@tonic-gate -k $(ELFSIGN_SEKEY) -c $(ELFSIGN_SECERT) -e $@ 8467c478bd9Sstevel@tonic-gate 8477c478bd9Sstevel@tonic-gate# Rules (normally from make.rules) and macros which are used for post 8487c478bd9Sstevel@tonic-gate# processing files. Normally, these do stripping of the comment section 8497c478bd9Sstevel@tonic-gate# automatically. 8507c478bd9Sstevel@tonic-gate# RELEASE_CM: Should be editted to reflect the release. 8517c478bd9Sstevel@tonic-gate# POST_PROCESS_O: Post-processing for `.o' files. 8527c478bd9Sstevel@tonic-gate# POST_PROCESS_A: Post-processing for `.a' files (currently null). 8537c478bd9Sstevel@tonic-gate# POST_PROCESS_SO: Post-processing for `.so' files. 8547c478bd9Sstevel@tonic-gate# POST_PROCESS: Post-processing for executable files (no suffix). 8557c478bd9Sstevel@tonic-gate# Note that these macros are not completely generalized as they are to be 8567c478bd9Sstevel@tonic-gate# used with the file name to be processed following. 8577c478bd9Sstevel@tonic-gate# 8587c478bd9Sstevel@tonic-gate# It is left as an exercise to Release Engineering to embellish the generation 8597c478bd9Sstevel@tonic-gate# of the release comment string. 8607c478bd9Sstevel@tonic-gate# 8617c478bd9Sstevel@tonic-gate# If this is a standard development build: 8627c478bd9Sstevel@tonic-gate# compress the comment section (mcs -c) 8637c478bd9Sstevel@tonic-gate# add the standard comment (mcs -a $(RELEASE_CM)) 8647c478bd9Sstevel@tonic-gate# add the development specific comment (mcs -a $(DEV_CM)) 8657c478bd9Sstevel@tonic-gate# 8667c478bd9Sstevel@tonic-gate# If this is an installation build: 8677c478bd9Sstevel@tonic-gate# delete the comment section (mcs -d) 8687c478bd9Sstevel@tonic-gate# add the standard comment (mcs -a $(RELEASE_CM)) 8697c478bd9Sstevel@tonic-gate# add the development specific comment (mcs -a $(DEV_CM)) 8707c478bd9Sstevel@tonic-gate# 8717c478bd9Sstevel@tonic-gate# If this is an release build: 8727c478bd9Sstevel@tonic-gate# delete the comment section (mcs -d) 8737c478bd9Sstevel@tonic-gate# add the standard comment (mcs -a $(RELEASE_CM)) 8747c478bd9Sstevel@tonic-gate# 8757c478bd9Sstevel@tonic-gate# The ONVERS macro sets the default value for the VERSION string 8767c478bd9Sstevel@tonic-gate# within pkginfo. 8777c478bd9Sstevel@tonic-gate# 8787c478bd9Sstevel@tonic-gate# The following list of macros are used in the definition of RELEASE_CM 8797c478bd9Sstevel@tonic-gate# which is used to label all binaries in the build: 8807c478bd9Sstevel@tonic-gate# 8817c478bd9Sstevel@tonic-gate# RELEASE Specific release of the build, eg: 5.2 8822032ea7bSmeem# RELEASE_MAJOR Major version number part of $(RELEASE) 8832032ea7bSmeem# RELEASE_MINOR Minor version number part of $(RELEASE) 8847c478bd9Sstevel@tonic-gate# VERSION Version of the build (alpha, beta, Generic) 8857c478bd9Sstevel@tonic-gate# PATCHID If this is a patch this value should contain 8867c478bd9Sstevel@tonic-gate# the patchid value (eg: "Generic 100832-01"), otherwise 8877c478bd9Sstevel@tonic-gate# it will be set to $(VERSION) 8887c478bd9Sstevel@tonic-gate# RELEASE_DATE Date of the Release Build 8897c478bd9Sstevel@tonic-gate# PATCH_DATE Date the patch was created, if this is blank it 8907c478bd9Sstevel@tonic-gate# will default to the RELEASE_DATE 8917c478bd9Sstevel@tonic-gate# 8927c478bd9Sstevel@tonic-gateONVERS= "11.11" 8932032ea7bSmeemRELEASE_MAJOR= 5 8942032ea7bSmeemRELEASE_MINOR= 11 8952032ea7bSmeemRELEASE= $(RELEASE_MAJOR).$(RELEASE_MINOR) 8967c478bd9Sstevel@tonic-gateVERSION= SunOS Development 8977c478bd9Sstevel@tonic-gatePATCHID= $(VERSION) 8987c478bd9Sstevel@tonic-gateRELEASE_DATE= October 2007 8997c478bd9Sstevel@tonic-gatePATCH_DATE= $(RELEASE_DATE) 9007c478bd9Sstevel@tonic-gateRELEASE_CM= "@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)" 9017c478bd9Sstevel@tonic-gateDEV_CM= "@($(POUND_SIGN))SunOS Internal Development: \ 9027c478bd9Sstevel@tonic-gate`$(ECHO) $$LOGNAME` `date +%Y-%m-%d` `$(ECHO) [\`basename $$CODEMGR_WS\`]`" 9037c478bd9Sstevel@tonic-gate 9047c478bd9Sstevel@tonic-gatePROCESS_COMMENT= @?${MCS} -c -a $(RELEASE_CM) -a $(DEV_CM) 9057c478bd9Sstevel@tonic-gate$(STRIP_COMMENTS)PROCESS_COMMENT= @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM) 9067c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PROCESS_COMMENT= @?${MCS} -d -a $(RELEASE_CM) 9077c478bd9Sstevel@tonic-gate 9087c478bd9Sstevel@tonic-gateSTRIP_STABS= : 9097c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)STRIP_STABS= $(STRIP) -x $@ 9107c478bd9Sstevel@tonic-gate 9117c478bd9Sstevel@tonic-gatePOST_PROCESS_O= $(PROCESS_COMMENT) $@ 9127c478bd9Sstevel@tonic-gatePOST_PROCESS_A= 9137c478bd9Sstevel@tonic-gatePOST_PROCESS_SO= $(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \ 9147c478bd9Sstevel@tonic-gate $(ELFSIGN_OBJECT) 9158ad60789SriePOST_PROCESS= $(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \ 9168ad60789Srie $(ELFSIGN_OBJECT) 9177c478bd9Sstevel@tonic-gate 9187c478bd9Sstevel@tonic-gate# 9197c478bd9Sstevel@tonic-gate# The PKGDEFS macro points to the source directory containing the majority 9207c478bd9Sstevel@tonic-gate# of ON's package definitions plus Makefiles with general package creation 9217c478bd9Sstevel@tonic-gate# rules. 9227c478bd9Sstevel@tonic-gate# 9237c478bd9Sstevel@tonic-gate# PKGARCHIVE specifies the default location where packages should be 9247c478bd9Sstevel@tonic-gate# placed if built. 9257c478bd9Sstevel@tonic-gate# 9267c478bd9Sstevel@tonic-gatePKGDEFS=$(SRC)/pkgdefs 9277c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PKGARCHIVESUFFIX= -nd 9287c478bd9Sstevel@tonic-gatePKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX) 9297c478bd9Sstevel@tonic-gate 9307c478bd9Sstevel@tonic-gate# Default build rules which perform comment section post-processing. 9317c478bd9Sstevel@tonic-gate# 9327c478bd9Sstevel@tonic-gate.c: 9337c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $< $(LDLIBS) 9347c478bd9Sstevel@tonic-gate $(POST_PROCESS) 9357c478bd9Sstevel@tonic-gate.c.o: 9367c478bd9Sstevel@tonic-gate $(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK) 9377c478bd9Sstevel@tonic-gate $(POST_PROCESS_O) 9387c478bd9Sstevel@tonic-gate.c.a: 9397c478bd9Sstevel@tonic-gate $(COMPILE.c) -o $% $< 9407c478bd9Sstevel@tonic-gate $(PROCESS_COMMENT) $% 9417c478bd9Sstevel@tonic-gate $(AR) $(ARFLAGS) $@ $% 9427c478bd9Sstevel@tonic-gate $(RM) $% 9437c478bd9Sstevel@tonic-gate.s.o: 9447c478bd9Sstevel@tonic-gate $(COMPILE.s) -o $@ $< 9457c478bd9Sstevel@tonic-gate $(POST_PROCESS_O) 9467c478bd9Sstevel@tonic-gate.s.a: 9477c478bd9Sstevel@tonic-gate $(COMPILE.s) -o $% $< 9487c478bd9Sstevel@tonic-gate $(PROCESS_COMMENT) $% 9497c478bd9Sstevel@tonic-gate $(AR) $(ARFLAGS) $@ $% 9507c478bd9Sstevel@tonic-gate $(RM) $% 9517c478bd9Sstevel@tonic-gate.cc: 9527c478bd9Sstevel@tonic-gate $(LINK.cc) -o $@ $< $(LDLIBS) 9537c478bd9Sstevel@tonic-gate $(POST_PROCESS) 9547c478bd9Sstevel@tonic-gate.cc.o: 9557c478bd9Sstevel@tonic-gate $(COMPILE.cc) $(OUTPUT_OPTION) $< 9567c478bd9Sstevel@tonic-gate $(POST_PROCESS_O) 9577c478bd9Sstevel@tonic-gate.cc.a: 9587c478bd9Sstevel@tonic-gate $(COMPILE.cc) -o $% $< 9597c478bd9Sstevel@tonic-gate $(AR) $(ARFLAGS) $@ $% 9607c478bd9Sstevel@tonic-gate $(PROCESS_COMMENT) $% 9617c478bd9Sstevel@tonic-gate $(RM) $% 9627c478bd9Sstevel@tonic-gate.y: 9637c478bd9Sstevel@tonic-gate $(YACC.y) $< 9647c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ y.tab.c $(LDLIBS) 9657c478bd9Sstevel@tonic-gate $(POST_PROCESS) 9667c478bd9Sstevel@tonic-gate $(RM) y.tab.c 9677c478bd9Sstevel@tonic-gate.y.o: 9687c478bd9Sstevel@tonic-gate $(YACC.y) $< 9697c478bd9Sstevel@tonic-gate $(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK) 9707c478bd9Sstevel@tonic-gate $(POST_PROCESS_O) 9717c478bd9Sstevel@tonic-gate $(RM) y.tab.c 9727c478bd9Sstevel@tonic-gate.l: 9737c478bd9Sstevel@tonic-gate $(RM) $*.c 9747c478bd9Sstevel@tonic-gate $(LEX.l) $< > $*.c 9757c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $*.c -ll $(LDLIBS) 9767c478bd9Sstevel@tonic-gate $(POST_PROCESS) 9777c478bd9Sstevel@tonic-gate $(RM) $*.c 9787c478bd9Sstevel@tonic-gate.l.o: 9797c478bd9Sstevel@tonic-gate $(RM) $*.c 9807c478bd9Sstevel@tonic-gate $(LEX.l) $< > $*.c 9817c478bd9Sstevel@tonic-gate $(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK) 9827c478bd9Sstevel@tonic-gate $(POST_PROCESS_O) 9837c478bd9Sstevel@tonic-gate $(RM) $*.c 9847c478bd9Sstevel@tonic-gate 9857c478bd9Sstevel@tonic-gate.java.class: 9867c478bd9Sstevel@tonic-gate $(COMPILE.java) $< 9877c478bd9Sstevel@tonic-gate 988a778b211Scarlsonj# Bourne and Korn shell script message catalog build rules. 989a778b211Scarlsonj# We extract all gettext strings with sed(1) (being careful to permit 990a778b211Scarlsonj# multiple gettext strings on the same line), weed out the dups, and 991a778b211Scarlsonj# build the catalogue with awk(1). 9927c478bd9Sstevel@tonic-gate 993a778b211Scarlsonj.sh.po .ksh.po: 9947c478bd9Sstevel@tonic-gate $(SED) -n -e ":a" \ 9957c478bd9Sstevel@tonic-gate -e "h" \ 9967c478bd9Sstevel@tonic-gate -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p" \ 9977c478bd9Sstevel@tonic-gate -e "x" \ 9987c478bd9Sstevel@tonic-gate -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/" \ 9997c478bd9Sstevel@tonic-gate -e "t a" \ 10007c478bd9Sstevel@tonic-gate $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@ 10017c478bd9Sstevel@tonic-gate 1002a778b211Scarlsonj# 1003a778b211Scarlsonj# Python and Perl executable and message catalog build rules. 1004a778b211Scarlsonj# Note that Python i18n isn't supported by this rule set yet, 1005a778b211Scarlsonj# as it requires a special build tool (pygettext.py). 1006a778b211Scarlsonj# 1007a778b211Scarlsonj.SUFFIXES: .pl .pm .py 1008a778b211Scarlsonj 1009a778b211Scarlsonj.pl: 1010a778b211Scarlsonj $(RM) $@; 1011a778b211Scarlsonj $(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@; 1012a778b211Scarlsonj $(CHMOD) +x $@ 1013a778b211Scarlsonj 1014a778b211Scarlsonj.py: 1015a778b211Scarlsonj $(RM) $@; $(CAT) $< > $@; $(CHMOD) +x $@ 1016a778b211Scarlsonj 1017a778b211Scarlsonj.pl.po .pm.po: 1018a778b211Scarlsonj $(XGETTEXT) $(XGETFLAGS) -d $(<F) $< ; 1019a778b211Scarlsonj $(RM) $@ ; 1020a778b211Scarlsonj $(SED) "/^domain/d" < $(<F).po > $@ ; 1021a778b211Scarlsonj $(RM) $(<F).po 10229acbbeafSnn35248 10237c478bd9Sstevel@tonic-gate# 10247c478bd9Sstevel@tonic-gate# When using xgettext, we want messages to go to the default domain, 10257c478bd9Sstevel@tonic-gate# rather than the specified one. This special version of the 10267c478bd9Sstevel@tonic-gate# COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN, 10277c478bd9Sstevel@tonic-gate# causing xgettext to put all messages into the default domain. 10287c478bd9Sstevel@tonic-gate# 10297c478bd9Sstevel@tonic-gateCPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN) 10307c478bd9Sstevel@tonic-gate 10317c478bd9Sstevel@tonic-gate.c.i: 10327c478bd9Sstevel@tonic-gate $(CPPFORPO) $< > $@ 10337c478bd9Sstevel@tonic-gate 10347c478bd9Sstevel@tonic-gate.h.i: 10357c478bd9Sstevel@tonic-gate $(CPPFORPO) $< > $@ 10367c478bd9Sstevel@tonic-gate 10377c478bd9Sstevel@tonic-gate.y.i: 10387c478bd9Sstevel@tonic-gate $(YACC) -d $< 10397c478bd9Sstevel@tonic-gate $(CPPFORPO) y.tab.c > $@ 10407c478bd9Sstevel@tonic-gate $(RM) y.tab.c 10417c478bd9Sstevel@tonic-gate 10427c478bd9Sstevel@tonic-gate.l.i: 10437c478bd9Sstevel@tonic-gate $(LEX) $< 10447c478bd9Sstevel@tonic-gate $(CPPFORPO) lex.yy.c > $@ 10457c478bd9Sstevel@tonic-gate $(RM) lex.yy.c 10467c478bd9Sstevel@tonic-gate 10477c478bd9Sstevel@tonic-gate.c.po: 10487c478bd9Sstevel@tonic-gate $(CPPFORPO) $< > $<.i 10497c478bd9Sstevel@tonic-gate $(BUILD.po) 10507c478bd9Sstevel@tonic-gate 10517c478bd9Sstevel@tonic-gate.y.po: 10527c478bd9Sstevel@tonic-gate $(YACC) -d $< 10537c478bd9Sstevel@tonic-gate $(CPPFORPO) y.tab.c > $<.i 10547c478bd9Sstevel@tonic-gate $(BUILD.po) 10557c478bd9Sstevel@tonic-gate $(RM) y.tab.c 10567c478bd9Sstevel@tonic-gate 10577c478bd9Sstevel@tonic-gate.l.po: 10587c478bd9Sstevel@tonic-gate $(LEX) $< 10597c478bd9Sstevel@tonic-gate $(CPPFORPO) lex.yy.c > $<.i 10607c478bd9Sstevel@tonic-gate $(BUILD.po) 10617c478bd9Sstevel@tonic-gate $(RM) lex.yy.c 10627c478bd9Sstevel@tonic-gate 10637c478bd9Sstevel@tonic-gate# 10647c478bd9Sstevel@tonic-gate# Rules to perform stylistic checks 10657c478bd9Sstevel@tonic-gate# 1066a778b211Scarlsonj.SUFFIXES: .x .xml .check .xmlchk 10677c478bd9Sstevel@tonic-gate 10687c478bd9Sstevel@tonic-gate.h.check: 10697c478bd9Sstevel@tonic-gate $(DOT_H_CHECK) 10707c478bd9Sstevel@tonic-gate 10717c478bd9Sstevel@tonic-gate.x.check: 10727c478bd9Sstevel@tonic-gate $(DOT_X_CHECK) 10737c478bd9Sstevel@tonic-gate 10747c478bd9Sstevel@tonic-gate.xml.xmlchk: 10757c478bd9Sstevel@tonic-gate $(MANIFEST_CHECK) 10767c478bd9Sstevel@tonic-gate 10777c478bd9Sstevel@tonic-gate# 10787c478bd9Sstevel@tonic-gate# Rules to process ONC+ Source partial files 10797c478bd9Sstevel@tonic-gate# 10807c478bd9Sstevel@tonic-gate%_onc_plus: % 10817c478bd9Sstevel@tonic-gate @$(ECHO) "extracting code from $< ... " 10827c478bd9Sstevel@tonic-gate sed -n -e '/ONC_PLUS EXTRACT START/,/ONC_PLUS EXTRACT END/p' $< > $@ 108332f1e47bSsommerfe 108432f1e47bSsommerfe# 108532f1e47bSsommerfe# Include rules to render automated sccs get rules "safe". 108632f1e47bSsommerfe# 108732f1e47bSsommerfeinclude $(SRC)/Makefile.noget 1088