xref: /illumos-gate/usr/src/Makefile.master (revision 4f4d4600)
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#
23b83ec4edSjmcp# Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
240a49f0acSAdam H. Leventhal# Copyright (c) 2012 by Delphix. All rights reserved.
257c478bd9Sstevel@tonic-gate#
260a49f0acSAdam H. Leventhal
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate# Makefile.master, global definitions for system source
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gateROOT=		/proto
317c478bd9Sstevel@tonic-gate
32494f7e12SKeith M Wesolowski#
33494f7e12SKeith M Wesolowski# Adjunct root, containing an additional proto area to be used for headers
34494f7e12SKeith M Wesolowski# and libraries.
35494f7e12SKeith M Wesolowski#
36494f7e12SKeith M WesolowskiADJUNCT_PROTO=
37494f7e12SKeith M Wesolowski
38494f7e12SKeith M Wesolowski#
39494f7e12SKeith M Wesolowski# Adjunct for building things that run on the build machine.
40494f7e12SKeith M Wesolowski#
41494f7e12SKeith M WesolowskiNATIVE_ADJUNCT=	/usr
42494f7e12SKeith M Wesolowski
437c478bd9Sstevel@tonic-gate#
4424fe0b3bSjmcp# RELEASE_BUILD should be cleared for final release builds.
4524fe0b3bSjmcp# NOT_RELEASE_BUILD is exactly what the name implies.
467c478bd9Sstevel@tonic-gate#
477c478bd9Sstevel@tonic-gate# __GNUC toggles the building of ON components using gcc and related tools.
487c478bd9Sstevel@tonic-gate# Normally set to `#', set it to `' to do gcc build.
497c478bd9Sstevel@tonic-gate#
507c478bd9Sstevel@tonic-gate# The declaration POUND_SIGN is always '#'. This is needed to get around the
517c478bd9Sstevel@tonic-gate# make feature that '#' is always a comment delimiter, even when escaped or
5248bc00d6Sjmcp# quoted. We use this macro expansion method to get POUND_SIGN rather than
5348bc00d6Sjmcp# always breaking out a shell because the general case can cause a noticable
5448bc00d6Sjmcp# slowdown in build times when so many Makefiles include Makefile.master.
557c478bd9Sstevel@tonic-gate#
5648bc00d6Sjmcp# While the majority of users are expected to override the setting below
5748bc00d6Sjmcp# with an env file (via nightly or bldenv), if you aren't building that way
5848bc00d6Sjmcp# (ie, you're using "ws" or some other bootstrapping method) then you need
5948bc00d6Sjmcp# this definition in order to avoid the subshell invocation mentioned above.
6048bc00d6Sjmcp#
6148bc00d6Sjmcp
6248bc00d6SjmcpPRE_POUND=				pre\#
6348bc00d6SjmcpPOUND_SIGN=				$(PRE_POUND:pre\%=%)
647c478bd9Sstevel@tonic-gate
657c478bd9Sstevel@tonic-gateNOT_RELEASE_BUILD=
667c478bd9Sstevel@tonic-gateRELEASE_BUILD=				$(POUND_SIGN)
677c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)NOT_RELEASE_BUILD=	$(POUND_SIGN)
687c478bd9Sstevel@tonic-gatePATCH_BUILD=				$(POUND_SIGN)
697c478bd9Sstevel@tonic-gate
707c478bd9Sstevel@tonic-gate# SPARC_BLD is '#' for an Intel build.
717c478bd9Sstevel@tonic-gate# INTEL_BLD is '#' for a Sparc build.
727c478bd9Sstevel@tonic-gateSPARC_BLD_1=    $(MACH:i386=$(POUND_SIGN))
737c478bd9Sstevel@tonic-gateSPARC_BLD=      $(SPARC_BLD_1:sparc=)
747c478bd9Sstevel@tonic-gateINTEL_BLD_1=    $(MACH:sparc=$(POUND_SIGN))
757c478bd9Sstevel@tonic-gateINTEL_BLD=      $(INTEL_BLD_1:i386=)
767c478bd9Sstevel@tonic-gate
776a3e8e86SRichard Lowe# The variables below control the compilers used during the build.
786a3e8e86SRichard Lowe# There are a number of permutations.
796a3e8e86SRichard Lowe#
806a3e8e86SRichard Lowe# __GNUC and __SUNC control (and indicate) the primary compiler.  Whichever
816a3e8e86SRichard Lowe# one is not POUND_SIGN is the primary, with the other as the shadow.  They
826a3e8e86SRichard Lowe# may also be used to control entirely compiler-specific Makefile assignments.
83*4f4d4600SRichard Lowe# __GNUC and GCC are the default.
846a3e8e86SRichard Lowe#
856a3e8e86SRichard Lowe# __GNUC64 indicates that the 64bit build should use the GNU C compiler.
866a3e8e86SRichard Lowe# There is no Sun C analogue.
876a3e8e86SRichard Lowe#
886a3e8e86SRichard Lowe# The following version-specific options are operative regardless of which
896a3e8e86SRichard Lowe# compiler is primary, and control the versions of the given compilers to be
906a3e8e86SRichard Lowe# used.  They also allow compiler-version specific Makefile fragments.
916a3e8e86SRichard Lowe#
926a3e8e86SRichard Lowe
93*4f4d4600SRichard Lowe__SUNC=			$(POUND_SIGN)
94*4f4d4600SRichard Lowe$(__SUNC)__GNUC=	$(POUND_SIGN)
956a3e8e86SRichard Lowe__GNUC64=		$(__GNUC)
967c478bd9Sstevel@tonic-gate
97fb9f9b97Skupfer# CLOSED is the root of the tree that contains source which isn't released
98fb9f9b97Skupfer# as open source
99fb9f9b97SkupferCLOSED=		$(SRC)/../closed
100fb9f9b97Skupfer
1017c478bd9Sstevel@tonic-gate# BUILD_TOOLS is the root of all tools including compilers.
1027c478bd9Sstevel@tonic-gate# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
1037c478bd9Sstevel@tonic-gate
1047c478bd9Sstevel@tonic-gateBUILD_TOOLS=		/ws/onnv-tools
1057c478bd9Sstevel@tonic-gateONBLD_TOOLS=		$(BUILD_TOOLS)/onbld
1067c478bd9Sstevel@tonic-gate
1077c478bd9Sstevel@tonic-gateJAVA_ROOT=	/usr/java
1087c478bd9Sstevel@tonic-gate
1097c478bd9Sstevel@tonic-gateSFW_ROOT=	/usr/sfw
110ebf35943SdinakSFWINCDIR=	$(SFW_ROOT)/include
1117c478bd9Sstevel@tonic-gateSFWLIBDIR=	$(SFW_ROOT)/lib
1127c478bd9Sstevel@tonic-gateSFWLIBDIR64=	$(SFW_ROOT)/lib/$(MACH64)
1137c478bd9Sstevel@tonic-gate
1141a5ea532SRichard LoweGCC_ROOT=	/opt/gcc/4.4.4
1156a3e8e86SRichard LoweGCCLIBDIR=	$(GCC_ROOT)/lib
1166a3e8e86SRichard LoweGCCLIBDIR64=	$(GCC_ROOT)/lib/$(MACH64)
1176a3e8e86SRichard Lowe
11811d7e819SRobert MustacchiDOCBOOK_XSL_ROOT=	/usr/share/sgml/docbook/xsl-stylesheets
11911d7e819SRobert Mustacchi
1207c478bd9Sstevel@tonic-gateRPCGEN=		/usr/bin/rpcgen
1217c478bd9Sstevel@tonic-gateSTABS=		$(ONBLD_TOOLS)/bin/$(MACH)/stabs
122ae115bc7SmrjELFEXTRACT=	$(ONBLD_TOOLS)/bin/$(MACH)/elfextract
123ae115bc7SmrjMBH_PATCH=	$(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
1247c478bd9Sstevel@tonic-gateECHO=		echo
1257c478bd9Sstevel@tonic-gateINS=		install
1267c478bd9Sstevel@tonic-gateTRUE=		true
1277c478bd9Sstevel@tonic-gateSYMLINK=	/usr/bin/ln -s
1287c478bd9Sstevel@tonic-gateLN=		/usr/bin/ln
1297c478bd9Sstevel@tonic-gateCHMOD=		/usr/bin/chmod
1307c478bd9Sstevel@tonic-gateMV=		/usr/bin/mv -f
1317c478bd9Sstevel@tonic-gateRM=		/usr/bin/rm -f
132f4b3ec61SdhCUT=		/usr/bin/cut
133f4b3ec61SdhNM=		/usr/ccs/bin/nm
134f4b3ec61SdhDIFF=		/usr/bin/diff
1357c478bd9Sstevel@tonic-gateGREP=		/usr/bin/grep
1361912d2c4SwesolowsEGREP=		/usr/bin/egrep
1374c06356bSdhELFWRAP=	/usr/bin/elfwrap
13832bd7e59SmjnelsonKSH93=		/usr/bin/ksh93
1397c478bd9Sstevel@tonic-gateSED=		/usr/bin/sed
1407c478bd9Sstevel@tonic-gateNAWK=		/usr/bin/nawk
1417c478bd9Sstevel@tonic-gateCP=		/usr/bin/cp -f
1427c478bd9Sstevel@tonic-gateMCS=		/usr/ccs/bin/mcs
1437c478bd9Sstevel@tonic-gateCAT=            /usr/bin/cat
14424da5b34SrieELFDUMP=	/usr/ccs/bin/elfdump
1457c478bd9Sstevel@tonic-gateM4=		/usr/ccs/bin/m4
1467c478bd9Sstevel@tonic-gateSTRIP=		/usr/ccs/bin/strip
1477c478bd9Sstevel@tonic-gateLEX=		/usr/ccs/bin/lex
148f2fc321bSekFLEX=		$(SFW_ROOT)/bin/flex
1497c478bd9Sstevel@tonic-gateYACC=		/usr/ccs/bin/yacc
1507c478bd9Sstevel@tonic-gateCPP=		/usr/lib/cpp
1517c478bd9Sstevel@tonic-gateJAVAC=		$(JAVA_ROOT)/bin/javac
1527c478bd9Sstevel@tonic-gateJAVAH=		$(JAVA_ROOT)/bin/javah
1537c478bd9Sstevel@tonic-gateJAVADOC=	$(JAVA_ROOT)/bin/javadoc
1547c478bd9Sstevel@tonic-gateRMIC=		$(JAVA_ROOT)/bin/rmic
1557c478bd9Sstevel@tonic-gateJAR=		$(JAVA_ROOT)/bin/jar
1567c478bd9Sstevel@tonic-gateCTFCONVERT=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
1577c478bd9Sstevel@tonic-gateCTFMERGE=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
1587c478bd9Sstevel@tonic-gateCTFSTABS=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
159a0ed5030SJason KingCTFSTRIP=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstrip
160d0e51869SamwNDRGEN=		$(ONBLD_TOOLS)/bin/$(MACH)/ndrgen
1617c478bd9Sstevel@tonic-gateGENOFFSETS=	$(ONBLD_TOOLS)/bin/genoffsets
1627c478bd9Sstevel@tonic-gateCTFCVTPTBL=	$(ONBLD_TOOLS)/bin/ctfcvtptbl
1637c478bd9Sstevel@tonic-gateCTFFINDMOD=	$(ONBLD_TOOLS)/bin/ctffindmod
1647c478bd9Sstevel@tonic-gateXREF=		$(ONBLD_TOOLS)/bin/xref
1657c478bd9Sstevel@tonic-gateFIND=		/usr/bin/find
1667c478bd9Sstevel@tonic-gatePERL=		/usr/bin/perl
16787ab3622SRichard LowePYTHON_26=	/usr/bin/python2.6
1686066d16eSPiotr JasiukajtisPYTHON=		$(PYTHON_26)
1697c478bd9Sstevel@tonic-gateSORT=		/usr/bin/sort
1707c478bd9Sstevel@tonic-gateTOUCH=		/usr/bin/touch
1717c478bd9Sstevel@tonic-gateWC=		/usr/bin/wc
1727c478bd9Sstevel@tonic-gateXARGS=		/usr/bin/xargs
1732cc2d1f4SdarrenmELFEDIT=	/usr/bin/elfedit
1747c478bd9Sstevel@tonic-gateELFSIGN=	/usr/bin/elfsign
1750a49f0acSAdam H. LeventhalDTRACE=		/usr/sbin/dtrace -xnolibs
176620753d0SjmcpUNIQ=		/usr/bin/uniq
1772ad72058SGarrett D'AmoreTAR=		/usr/bin/tar
178e119f243SRobert MustacchiASTBINDIR=	/usr/ast/bin
179e119f243SRobert MustacchiMSGCC=		$(ASTBINDIR)/msgcc
1807c478bd9Sstevel@tonic-gate
1817c478bd9Sstevel@tonic-gateFILEMODE=	644
1827c478bd9Sstevel@tonic-gateDIRMODE=	755
1837c478bd9Sstevel@tonic-gate
1847c478bd9Sstevel@tonic-gate#
1857c478bd9Sstevel@tonic-gate# The version of the patch makeup table optimized for build-time use.  Used
1867c478bd9Sstevel@tonic-gate# during patch builds only.
1877c478bd9Sstevel@tonic-gate$(PATCH_BUILD)PMTMO_FILE=$(SRC)/patch_makeup_table.mo
1887c478bd9Sstevel@tonic-gate
1897c478bd9Sstevel@tonic-gate# Declare that nothing should be built in parallel.
1907c478bd9Sstevel@tonic-gate# Individual Makefiles can use the .PARALLEL target to declare otherwise.
1917c478bd9Sstevel@tonic-gate.NO_PARALLEL:
1927c478bd9Sstevel@tonic-gate
1937c478bd9Sstevel@tonic-gate# For stylistic checks
1947c478bd9Sstevel@tonic-gate#
1957c478bd9Sstevel@tonic-gate# Note that the X and C checks are not used at this time and may need
1967c478bd9Sstevel@tonic-gate# modification when they are actually used.
1977c478bd9Sstevel@tonic-gate#
198cdf0c1d5SmjnelsonCSTYLE=		$(ONBLD_TOOLS)/bin/cstyle
1997c478bd9Sstevel@tonic-gateCSTYLE_TAIL=
200cdf0c1d5SmjnelsonHDRCHK=		$(ONBLD_TOOLS)/bin/hdrchk
2017c478bd9Sstevel@tonic-gateHDRCHK_TAIL=
202cdf0c1d5SmjnelsonJSTYLE=		$(ONBLD_TOOLS)/bin/jstyle
2037c478bd9Sstevel@tonic-gate
2047c478bd9Sstevel@tonic-gateDOT_H_CHECK=	\
2057c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
2067c478bd9Sstevel@tonic-gate	$(HDRCHK) $< $(HDRCHK_TAIL)
2077c478bd9Sstevel@tonic-gate
2087c478bd9Sstevel@tonic-gateDOT_X_CHECK=	\
2097c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
2107c478bd9Sstevel@tonic-gate	$(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
2117c478bd9Sstevel@tonic-gate
2127c478bd9Sstevel@tonic-gateDOT_C_CHECK=	\
2137c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
2147c478bd9Sstevel@tonic-gate
2157c478bd9Sstevel@tonic-gateMANIFEST_CHECK=	\
2167c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; \
2177c478bd9Sstevel@tonic-gate	SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
2181f6eb021SLiane Praza	SVCCFG_REPOSITORY=$(SRC)/cmd/svc/seed/global.db \
2191f6eb021SLiane Praza	SVCCFG_CONFIGD_PATH=$(SRC)/cmd/svc/configd/svc.configd-native \
2207c478bd9Sstevel@tonic-gate	$(SRC)/cmd/svc/svccfg/svccfg-native validate $<
2217c478bd9Sstevel@tonic-gate
2227c478bd9Sstevel@tonic-gateINS.file=	$(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
2237c478bd9Sstevel@tonic-gateINS.dir=	$(INS) -s -d -m $(DIRMODE) $@
2247c478bd9Sstevel@tonic-gate# installs and renames at once
2257c478bd9Sstevel@tonic-gate#
2267c478bd9Sstevel@tonic-gateINS.rename=	$(INS.file); $(MV) $(@D)/$(<F) $@
2277c478bd9Sstevel@tonic-gate
2287c478bd9Sstevel@tonic-gate# install a link
2297c478bd9Sstevel@tonic-gateINSLINKTARGET=	$<
2307c478bd9Sstevel@tonic-gateINS.link=	$(RM) $@; $(LN) $(INSLINKTARGET) $@
231b83ec4edSjmcpINS.symlink=	$(RM) $@; $(SYMLINK) $(INSLINKTARGET) $@
232b83ec4edSjmcp
233cdf0c1d5Smjnelson#
234cdf0c1d5Smjnelson# Python bakes the mtime of the .py file into the compiled .pyc and
235cdf0c1d5Smjnelson# rebuilds if the baked-in mtime != the mtime of the source file
236cdf0c1d5Smjnelson# (rather than only if it's less than), thus when installing python
237cdf0c1d5Smjnelson# files we must make certain to not adjust the mtime of the source
238cdf0c1d5Smjnelson# (.py) file.
239cdf0c1d5Smjnelson#
240cdf0c1d5SmjnelsonINS.pyfile=	$(INS.file); $(TOUCH) -r $< $@
2417c478bd9Sstevel@tonic-gate
2427c478bd9Sstevel@tonic-gate# MACH must be set in the shell environment per uname -p on the build host
2437c478bd9Sstevel@tonic-gate# More specific architecture variables should be set in lower makefiles.
2447c478bd9Sstevel@tonic-gate#
2457c478bd9Sstevel@tonic-gate# MACH64 is derived from MACH, and BUILD64 is set to `#' for
2467c478bd9Sstevel@tonic-gate# architectures on which we do not build 64-bit versions.
2477c478bd9Sstevel@tonic-gate# (There are no such architectures at the moment.)
2487c478bd9Sstevel@tonic-gate#
2497c478bd9Sstevel@tonic-gate# Set BUILD64=# in the environment to disable 64-bit amd64
2507c478bd9Sstevel@tonic-gate# builds on i386 machines.
2517c478bd9Sstevel@tonic-gate
2527c478bd9Sstevel@tonic-gateMACH64_1=	$(MACH:sparc=sparcv9)
2537c478bd9Sstevel@tonic-gateMACH64=		$(MACH64_1:i386=amd64)
2547c478bd9Sstevel@tonic-gate
2557c478bd9Sstevel@tonic-gateMACH32_1=	$(MACH:sparc=sparcv7)
2567c478bd9Sstevel@tonic-gateMACH32=		$(MACH32_1:i386=i86)
2577c478bd9Sstevel@tonic-gate
2587c478bd9Sstevel@tonic-gatesparc_BUILD64=
2597c478bd9Sstevel@tonic-gatei386_BUILD64=
2607c478bd9Sstevel@tonic-gateBUILD64=	$($(MACH)_BUILD64)
2617c478bd9Sstevel@tonic-gate
2627c478bd9Sstevel@tonic-gate#
2637c478bd9Sstevel@tonic-gate# C compiler mode. Future compilers may change the default on us,
2647c478bd9Sstevel@tonic-gate# so force extended ANSI mode globally. Lower level makefiles can
2657c478bd9Sstevel@tonic-gate# override this by setting CCMODE.
2667c478bd9Sstevel@tonic-gate#
2677c478bd9Sstevel@tonic-gateCCMODE=			-Xa
2687c478bd9Sstevel@tonic-gateCCMODE64=		-Xa
2697c478bd9Sstevel@tonic-gate
2707c478bd9Sstevel@tonic-gate#
2717c478bd9Sstevel@tonic-gate# C compiler verbose mode. This is so we can enable it globally,
2727c478bd9Sstevel@tonic-gate# but turn it off in the lower level makefiles of things we cannot
2737c478bd9Sstevel@tonic-gate# (or aren't going to) fix.
2747c478bd9Sstevel@tonic-gate#
2757c478bd9Sstevel@tonic-gateCCVERBOSE=		-v
2767c478bd9Sstevel@tonic-gate
2777c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
2787c478bd9Sstevel@tonic-gate# from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
2797c478bd9Sstevel@tonic-gateV9ABIWARN=
2807c478bd9Sstevel@tonic-gate
2817c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
2827c478bd9Sstevel@tonic-gate# symbols (used to detect conflicts between objects that use global registers)
2837c478bd9Sstevel@tonic-gate# we disable this now for safety, and because genunix doesn't link with
2847c478bd9Sstevel@tonic-gate# this feature (the v9 default) enabled.
2857c478bd9Sstevel@tonic-gate#
2867c478bd9Sstevel@tonic-gate# REGSYM is separate since the C++ driver syntax is different.
2877c478bd9Sstevel@tonic-gateCCREGSYM=		-Wc,-Qiselect-regsym=0
2887c478bd9Sstevel@tonic-gateCCCREGSYM=		-Qoption cg -Qiselect-regsym=0
2897c478bd9Sstevel@tonic-gate
290face03d9Spetede# Prevent the removal of static symbols by the SPARC code generator (cg).
291face03d9Spetede# The x86 code generator (ube) does not remove such symbols and as such
292face03d9Spetede# using this workaround is not applicable for x86.
293face03d9Spetede#
294ac204d0dSpetedeCCSTATICSYM=		-Wc,-Qassembler-ounrefsym=0
2957c478bd9Sstevel@tonic-gate#
2967c478bd9Sstevel@tonic-gate# generate 32-bit addresses in the v9 kernel. Saves memory.
2977c478bd9Sstevel@tonic-gateCCABS32=		-Wc,-xcode=abs32
2986a3e8e86SRichard Lowe#
2996a3e8e86SRichard Lowe# generate v9 code which tolerates callers using the v7 ABI, for the sake of
3006a3e8e86SRichard Lowe# system calls.
3011a5ea532SRichard LoweCC32BITCALLERS=		-_gcc=-massume-32bit-callers
3026a3e8e86SRichard Lowe
3036a3e8e86SRichard Lowe# GCC, especially, is increasingly beginning to auto-inline functions and
3046a3e8e86SRichard Lowe# sadly does so separately not under the general -fno-inline-functions
30570413d7bSJoshua M. Clulow# Additionally, we wish to prevent optimisations which cause GCC to clone
30670413d7bSJoshua M. Clulow# functions -- in particular, these may cause unhelpful symbols to be
30770413d7bSJoshua M. Clulow# emitted instead of function names
3081a5ea532SRichard LoweCCNOAUTOINLINE= -_gcc=-fno-inline-small-functions \
30970413d7bSJoshua M. Clulow	-_gcc=-fno-inline-functions-called-once \
31070413d7bSJoshua M. Clulow	-_gcc=-fno-ipa-cp
3117c478bd9Sstevel@tonic-gate
3127c478bd9Sstevel@tonic-gate# One optimization the compiler might perform is to turn this:
3137c478bd9Sstevel@tonic-gate#	#pragma weak foo
3147c478bd9Sstevel@tonic-gate#	extern int foo;
3157c478bd9Sstevel@tonic-gate#	if (&foo)
3167c478bd9Sstevel@tonic-gate#		foo = 5;
3177c478bd9Sstevel@tonic-gate# into
3187c478bd9Sstevel@tonic-gate#	foo = 5;
3197c478bd9Sstevel@tonic-gate# Since we do some of this (foo might be referenced in common kernel code
3207c478bd9Sstevel@tonic-gate# but provided only for some cpu modules or platforms), we disable this
3217c478bd9Sstevel@tonic-gate# optimization.
322d69cdb36SRichard Lowe#
3237c478bd9Sstevel@tonic-gatesparc_CCUNBOUND	= -Wd,-xsafe=unboundsym
3247c478bd9Sstevel@tonic-gatei386_CCUNBOUND	=
3257c478bd9Sstevel@tonic-gateCCUNBOUND	= $($(MACH)_CCUNBOUND)
3267c478bd9Sstevel@tonic-gate
3277c478bd9Sstevel@tonic-gate#
3287c478bd9Sstevel@tonic-gate# compiler '-xarch' flag. This is here to centralize it and make it
3297c478bd9Sstevel@tonic-gate# overridable for testing.
3300bb07399SNick Toddsparc_XARCH=	-m32
3310bb07399SNick Toddsparcv9_XARCH=	-m64
3327c478bd9Sstevel@tonic-gatei386_XARCH=
3330bb07399SNick Toddamd64_XARCH=	-m64 -Ui386 -U__i386
3347c478bd9Sstevel@tonic-gate
3357c478bd9Sstevel@tonic-gate# assembler '-xarch' flag.  Different from compiler '-xarch' flag.
33660c80770Scraigmsparc_AS_XARCH=		-xarch=v8plus
3377c478bd9Sstevel@tonic-gatesparcv9_AS_XARCH=	-xarch=v9
3387c478bd9Sstevel@tonic-gatei386_AS_XARCH=
3397c478bd9Sstevel@tonic-gateamd64_AS_XARCH=		-xarch=amd64 -P -Ui386 -U__i386
3407c478bd9Sstevel@tonic-gate
3417c478bd9Sstevel@tonic-gate#
3427c478bd9Sstevel@tonic-gate# These flags define what we need to be 'standalone' i.e. -not- part
3437c478bd9Sstevel@tonic-gate# of the rather more cosy userland environment.  This basically means
3447c478bd9Sstevel@tonic-gate# the kernel.
3457c478bd9Sstevel@tonic-gate#
3467c478bd9Sstevel@tonic-gate# XX64	future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
3477c478bd9Sstevel@tonic-gate#
34802e56f3fSwesolowssparc_STAND_FLAGS=	-_gcc=-ffreestanding
34902e56f3fSwesolowssparcv9_STAND_FLAGS=	-_gcc=-ffreestanding
3508528fe16SRichard Lowe# Disabling MMX also disables 3DNow, disabling SSE also disables all later
3518528fe16SRichard Lowe# additions to SSE (SSE2, AVX ,etc.)
3528528fe16SRichard LoweNO_SIMD=		-_gcc=-mno-mmx -_gcc=-mno-sse
3538528fe16SRichard Lowei386_STAND_FLAGS=	-_gcc=-ffreestanding $(NO_SIMD)
3548528fe16SRichard Loweamd64_STAND_FLAGS=	-xmodel=kernel $(NO_SIMD)
3557c478bd9Sstevel@tonic-gate
3567c478bd9Sstevel@tonic-gateSAVEARGS=		-Wu,-save_args
3577c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS	+= $(SAVEARGS)
3587c478bd9Sstevel@tonic-gate
3597c478bd9Sstevel@tonic-gateSTAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
3607c478bd9Sstevel@tonic-gateSTAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
3617c478bd9Sstevel@tonic-gate
3627c478bd9Sstevel@tonic-gate#
3637c478bd9Sstevel@tonic-gate# disable the incremental linker
3647c478bd9Sstevel@tonic-gateILDOFF=			-xildoff
3657c478bd9Sstevel@tonic-gate#
3667c478bd9Sstevel@tonic-gateXDEPEND=		-xdepend
36722337b4bSrieXFFLAG=			-xF=%all
3687c478bd9Sstevel@tonic-gateXESS=			-xs
369d69cdb36SRichard LoweXSTRCONST=		-xstrconst
3707c478bd9Sstevel@tonic-gate
3717c478bd9Sstevel@tonic-gate#
3727c478bd9Sstevel@tonic-gate# turn warnings into errors (C)
3737c478bd9Sstevel@tonic-gateCERRWARN = -errtags=yes -errwarn=%all
3747c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
3757c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_STATEMENT_NOT_REACHED
3767014882cSRichard Lowe
3777014882cSRichard LoweCERRWARN += -_gcc=-Wno-missing-braces
3787014882cSRichard LoweCERRWARN += -_gcc=-Wno-sign-compare
3797014882cSRichard LoweCERRWARN += -_gcc=-Wno-unknown-pragmas
3807014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-parameter
3817014882cSRichard LoweCERRWARN += -_gcc=-Wno-missing-field-initializers
3827014882cSRichard Lowe
3837014882cSRichard Lowe# Unfortunately, this option can misfire very easily and unfixably.
3847014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-array-bounds
3857014882cSRichard Lowe
3867014882cSRichard Lowe# DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
3877014882cSRichard Lowe# -nd builds
3887014882cSRichard Lowe$(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-unused
3897014882cSRichard Lowe$(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-empty-body
3906a3e8e86SRichard Lowe
3917c478bd9Sstevel@tonic-gate#
3927c478bd9Sstevel@tonic-gate# turn warnings into errors (C++)
3937c478bd9Sstevel@tonic-gateCCERRWARN=		-xwe
3947c478bd9Sstevel@tonic-gate
3957c478bd9Sstevel@tonic-gate# C99 mode
3967c478bd9Sstevel@tonic-gateC99_ENABLE=	-xc99=%all
3977c478bd9Sstevel@tonic-gateC99_DISABLE=	-xc99=%none
3987c478bd9Sstevel@tonic-gateC99MODE=	$(C99_DISABLE)
3992df8f1d2Smike_sC99LMODE=	$(C99MODE:-xc99%=-Xc99%)
4007c478bd9Sstevel@tonic-gate
4017c478bd9Sstevel@tonic-gate# In most places, assignments to these macros should be appended with +=
4027c478bd9Sstevel@tonic-gate# (CPPFLAGS.master allows values to be prepended to CPPFLAGS).
403face03d9Spetedesparc_CFLAGS=	$(sparc_XARCH) $(CCSTATICSYM)
404ac204d0dSpetedesparcv9_CFLAGS=	$(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \
405ac204d0dSpetede		$(CCSTATICSYM)
4067c478bd9Sstevel@tonic-gatei386_CFLAGS=	$(i386_XARCH)
4077c478bd9Sstevel@tonic-gateamd64_CFLAGS=	$(amd64_XARCH)
4087c478bd9Sstevel@tonic-gate
4097c478bd9Sstevel@tonic-gatesparc_ASFLAGS=	$(sparc_AS_XARCH)
4107c478bd9Sstevel@tonic-gatesparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
4117c478bd9Sstevel@tonic-gatei386_ASFLAGS=	$(i386_AS_XARCH)
4127c478bd9Sstevel@tonic-gateamd64_ASFLAGS=	$(amd64_AS_XARCH)
4137c478bd9Sstevel@tonic-gate
4147c478bd9Sstevel@tonic-gate#
4157c478bd9Sstevel@tonic-gatesparc_COPTFLAG=		-xO3
4167c478bd9Sstevel@tonic-gatesparcv9_COPTFLAG=	-xO3
4177c478bd9Sstevel@tonic-gatei386_COPTFLAG=		-O
418662492f5Ssherrymamd64_COPTFLAG=		-xO3
4197c478bd9Sstevel@tonic-gate
4207c478bd9Sstevel@tonic-gateCOPTFLAG= $($(MACH)_COPTFLAG)
4217c478bd9Sstevel@tonic-gateCOPTFLAG64= $($(MACH64)_COPTFLAG)
4227c478bd9Sstevel@tonic-gate
4237c478bd9Sstevel@tonic-gate# When -g is used, the compiler globalizes static objects
4247c478bd9Sstevel@tonic-gate# (gives them a unique prefix). Disable that.
4257c478bd9Sstevel@tonic-gateCNOGLOBAL= -W0,-noglobal
4267c478bd9Sstevel@tonic-gate
42796ccc8cbSesaxe# Direct the Sun Studio compiler to use a static globalization prefix based on the
42896ccc8cbSesaxe# name of the module rather than something unique. Otherwise, objects
42996ccc8cbSesaxe# will not build deterministically, as subsequent compilations of identical
43096ccc8cbSesaxe# source will yeild objects that always look different.
43196ccc8cbSesaxe#
43296ccc8cbSesaxe# In the same spirit, this will also remove the date from the N_OPT stab.
43396ccc8cbSesaxeCGLOBALSTATIC= -W0,-xglobalstatic
43496ccc8cbSesaxe
43502e56f3fSwesolows# Sometimes we want all symbols and types in debugging information even
43602e56f3fSwesolows# if they aren't used.
43702e56f3fSwesolowsCALLSYMS=	-W0,-xdbggen=no%usedonly
43802e56f3fSwesolows
439ac204d0dSpetede#
440ac204d0dSpetede# Default debug format for Sun Studio 11 is dwarf, so force it to
441ac204d0dSpetede# generate stabs.
442ac204d0dSpetede#
443ac204d0dSpetedeDEBUGFORMAT=	-xdebugformat=stabs
444ac204d0dSpetede
4457c478bd9Sstevel@tonic-gate#
4467c478bd9Sstevel@tonic-gate# Flags used to build in debug mode for ctf generation.  Bugs in the Devpro
4477c478bd9Sstevel@tonic-gate# compilers currently prevent us from building with cc-emitted DWARF.
4487c478bd9Sstevel@tonic-gate#
44902e56f3fSwesolowsCTF_FLAGS_sparc	= -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
45002e56f3fSwesolowsCTF_FLAGS_i386	= -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
4512d4be7aaSRichard Lowe
4522d4be7aaSRichard LoweCTF_FLAGS_sparcv9	= $(CTF_FLAGS_sparc)
4532d4be7aaSRichard LoweCTF_FLAGS_amd64		= $(CTF_FLAGS_i386)
4542d4be7aaSRichard Lowe
4552d4be7aaSRichard Lowe# Sun Studio produces broken userland code when saving arguments.
4562d4be7aaSRichard Lowe$(__GNUC)CTF_FLAGS_amd64 += $(SAVEARGS)
4572d4be7aaSRichard Lowe
4582d4be7aaSRichard LoweCTF_FLAGS_32	= $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT)
4592d4be7aaSRichard LoweCTF_FLAGS_64	= $(CTF_FLAGS_$(MACH64)) $(DEBUGFORMAT)
4602d4be7aaSRichard LoweCTF_FLAGS	= $(CTF_FLAGS_32)
4617c478bd9Sstevel@tonic-gate
4627c478bd9Sstevel@tonic-gate#
4637c478bd9Sstevel@tonic-gate# Flags used with genoffsets
4647c478bd9Sstevel@tonic-gate#
465bf40377cSwesolowsGOFLAGS = -_noecho \
46602e56f3fSwesolows	$(CALLSYMS) \
46702e56f3fSwesolows	$(CDWARFSTR)
4687c478bd9Sstevel@tonic-gate
4697c478bd9Sstevel@tonic-gateOFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
4707c478bd9Sstevel@tonic-gate	$(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
4717c478bd9Sstevel@tonic-gate
4727c478bd9Sstevel@tonic-gateOFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
4737c478bd9Sstevel@tonic-gate	$(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
4747c478bd9Sstevel@tonic-gate
4757c478bd9Sstevel@tonic-gate#
4767c478bd9Sstevel@tonic-gate# tradeoff time for space (smaller is better)
4777c478bd9Sstevel@tonic-gate#
478ac204d0dSpetedesparc_SPACEFLAG		= -xspace -W0,-Lt
479ac204d0dSpetedesparcv9_SPACEFLAG	= -xspace -W0,-Lt
4807c478bd9Sstevel@tonic-gatei386_SPACEFLAG		= -xspace
4817c478bd9Sstevel@tonic-gateamd64_SPACEFLAG		=
4827c478bd9Sstevel@tonic-gate
4837c478bd9Sstevel@tonic-gateSPACEFLAG		= $($(MACH)_SPACEFLAG)
4847c478bd9Sstevel@tonic-gateSPACEFLAG64		= $($(MACH64)_SPACEFLAG)
4857c478bd9Sstevel@tonic-gate
486ac204d0dSpetede#
487ac204d0dSpetede# The Sun Studio 11 compiler has changed the behaviour of integer
488ac204d0dSpetede# wrap arounds and so a flag is needed to use the legacy behaviour
489ac204d0dSpetede# (without this flag panics/hangs could be exposed within the source).
490ac204d0dSpetede#
491ac204d0dSpetedesparc_IROPTFLAG		= -W2,-xwrap_int
492ac204d0dSpetedesparcv9_IROPTFLAG	= -W2,-xwrap_int
493ac204d0dSpetedei386_IROPTFLAG		=
494ac204d0dSpetedeamd64_IROPTFLAG		=
495ac204d0dSpetede
496ac204d0dSpetedeIROPTFLAG		= $($(MACH)_IROPTFLAG)
497ac204d0dSpetedeIROPTFLAG64		= $($(MACH64)_IROPTFLAG)
498ac204d0dSpetede
4997c478bd9Sstevel@tonic-gatesparc_XREGSFLAG		= -xregs=no%appl
5007c478bd9Sstevel@tonic-gatesparcv9_XREGSFLAG	= -xregs=no%appl
5017c478bd9Sstevel@tonic-gatei386_XREGSFLAG		=
5027c478bd9Sstevel@tonic-gateamd64_XREGSFLAG		=
5037c478bd9Sstevel@tonic-gate
5047c478bd9Sstevel@tonic-gateXREGSFLAG		= $($(MACH)_XREGSFLAG)
5057c478bd9Sstevel@tonic-gateXREGSFLAG64		= $($(MACH64)_XREGSFLAG)
5067c478bd9Sstevel@tonic-gate
507d69cdb36SRichard Lowe# dmake SOURCEDEBUG=yes ... enables source-level debugging information, and
508d69cdb36SRichard Lowe# avoids stripping it.
509d69cdb36SRichard LoweSOURCEDEBUG	= $(POUND_SIGN)
510d69cdb36SRichard LoweSRCDBGBLD	= $(SOURCEDEBUG:yes=)
511d69cdb36SRichard Lowe
512d69cdb36SRichard Lowe#
513d69cdb36SRichard Lowe# These variables are intended ONLY for use by developers to safely pass extra
514d69cdb36SRichard Lowe# flags to the compilers without unintentionally overriding Makefile-set
515d69cdb36SRichard Lowe# flags.  They should NEVER be set to any value in a Makefile.
516d69cdb36SRichard Lowe#
517d69cdb36SRichard Lowe# They come last in the associated FLAGS variable such that they can
518d69cdb36SRichard Lowe# explicitly override things if necessary, there are gaps in this, but it's
519d69cdb36SRichard Lowe# the best we can manage.
520d69cdb36SRichard Lowe#
521d69cdb36SRichard LoweCUSERFLAGS		=
522d69cdb36SRichard LoweCUSERFLAGS64		= $(CUSERFLAGS)
523d69cdb36SRichard LoweCCUSERFLAGS		=
524d69cdb36SRichard LoweCCUSERFLAGS64		= $(CCUSERFLAGS)
525d69cdb36SRichard Lowe
526d69cdb36SRichard LoweCSOURCEDEBUGFLAGS	=
527d69cdb36SRichard LoweCCSOURCEDEBUGFLAGS	=
528d69cdb36SRichard Lowe$(SRCDBGBLD)CSOURCEDEBUGFLAGS	= -g -xs
529d69cdb36SRichard Lowe$(SRCDBGBLD)CCSOURCEDEBUGFLAGS	= -g -xs
530d69cdb36SRichard Lowe
5317c478bd9Sstevel@tonic-gateCFLAGS=         $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
532ac204d0dSpetede		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \
533d69cdb36SRichard Lowe		$(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
534d69cdb36SRichard Lowe		$(CUSERFLAGS)
5357c478bd9Sstevel@tonic-gateCFLAGS64=       $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
536ac204d0dSpetede		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \
537d69cdb36SRichard Lowe		$(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
538d69cdb36SRichard Lowe		$(CUSERFLAGS64)
539ac204d0dSpetede#
540ac204d0dSpetede# Flags that are used to build parts of the code that are subsequently
541ac204d0dSpetede# run on the build machine (also known as the NATIVE_BUILD).
542ac204d0dSpetede#
5437c478bd9Sstevel@tonic-gateNATIVE_CFLAGS=	$(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
54496ccc8cbSesaxe		$(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \
545d69cdb36SRichard Lowe		$(IROPTFLAG) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \
546d69cdb36SRichard Lowe		$(CSOURCEDEBUGFLAGS) $(CUSERFLAGS)
5477c478bd9Sstevel@tonic-gate
5487c478bd9Sstevel@tonic-gateDTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\"	# For messaging.
5497c478bd9Sstevel@tonic-gateDTS_ERRNO=-D_TS_ERRNO
5507c478bd9Sstevel@tonic-gateCPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
551494f7e12SKeith M Wesolowski	$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) \
552494f7e12SKeith M Wesolowski	$(ADJUNCT_PROTO:%=-I%/usr/include)
553494f7e12SKeith M WesolowskiCPPFLAGS.native=$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) \
554494f7e12SKeith M Wesolowski		$(ENVCPPFLAGS4) -I$(NATIVE_ADJUNCT)/include
5557c478bd9Sstevel@tonic-gateCPPFLAGS=	$(CPPFLAGS.master)
5567c478bd9Sstevel@tonic-gateAS_CPPFLAGS=	$(CPPFLAGS.master)
5577c478bd9Sstevel@tonic-gateJAVAFLAGS=	-deprecation
5587c478bd9Sstevel@tonic-gate
5597c478bd9Sstevel@tonic-gate#
5607c478bd9Sstevel@tonic-gate# For source message catalogue
5617c478bd9Sstevel@tonic-gate#
5627c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .i .po
5637c478bd9Sstevel@tonic-gateMSGROOT= $(ROOT)/catalog
5647c478bd9Sstevel@tonic-gateMSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
5657c478bd9Sstevel@tonic-gateMSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
566d69cdb36SRichard LoweDCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
5677c478bd9Sstevel@tonic-gateDCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
5687c478bd9Sstevel@tonic-gate
5697c478bd9Sstevel@tonic-gateCLOBBERFILES += $(POFILE) $(POFILES)
5707c478bd9Sstevel@tonic-gateCOMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
5717c478bd9Sstevel@tonic-gateXGETTEXT= /usr/bin/xgettext
5727c478bd9Sstevel@tonic-gateXGETFLAGS= -c TRANSLATION_NOTE
57314843421SMatthew AhrensGNUXGETTEXT= /usr/gnu/bin/xgettext
57414843421SMatthew AhrensGNUXGETFLAGS= --add-comments=TRANSLATION_NOTE --keyword=_ \
57514843421SMatthew Ahrens	--strict --no-location --omit-header
5767c478bd9Sstevel@tonic-gateBUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
5777c478bd9Sstevel@tonic-gate	$(RM)	$@ ;\
578a778b211Scarlsonj	$(SED) "/^domain/d" < $(<F).po > $@ ;\
5797c478bd9Sstevel@tonic-gate	$(RM) $(<F).po $<.i
580a778b211Scarlsonj
5817c478bd9Sstevel@tonic-gate#
5827c478bd9Sstevel@tonic-gate# This is overwritten by local Makefile when PROG is a list.
5837c478bd9Sstevel@tonic-gate#
5847c478bd9Sstevel@tonic-gatePOFILE= $(PROG).po
5857c478bd9Sstevel@tonic-gate
5867c478bd9Sstevel@tonic-gatesparc_CCFLAGS=		-cg92 -compat=4 \
5877c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
5887c478bd9Sstevel@tonic-gate			$(CCERRWARN)
5897c478bd9Sstevel@tonic-gatesparcv9_CCFLAGS=	$(sparcv9_XARCH) -dalign -compat=5 \
5907c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
5917c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
5927c478bd9Sstevel@tonic-gate			$(CCCREGSYM) \
5937c478bd9Sstevel@tonic-gate			$(CCERRWARN)
5947c478bd9Sstevel@tonic-gatei386_CCFLAGS=		-compat=4 \
5957c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
5967c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
5977c478bd9Sstevel@tonic-gate			$(CCERRWARN)
5987c478bd9Sstevel@tonic-gateamd64_CCFLAGS=		$(amd64_XARCH) -compat=5 \
5997c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
6007c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
6017c478bd9Sstevel@tonic-gate			$(CCERRWARN)
6027c478bd9Sstevel@tonic-gate
6037c478bd9Sstevel@tonic-gatesparc_CCOPTFLAG=	-O
6047c478bd9Sstevel@tonic-gatesparcv9_CCOPTFLAG=	-O
6057c478bd9Sstevel@tonic-gatei386_CCOPTFLAG=		-O
6067c478bd9Sstevel@tonic-gateamd64_CCOPTFLAG=	-O
6077c478bd9Sstevel@tonic-gate
6087c478bd9Sstevel@tonic-gateCCOPTFLAG=	$($(MACH)_CCOPTFLAG)
6097c478bd9Sstevel@tonic-gateCCOPTFLAG64=	$($(MACH64)_CCOPTFLAG)
610d69cdb36SRichard LoweCCFLAGS=	$(CCOPTFLAG) $($(MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
611d69cdb36SRichard Lowe		$(CCUSERFLAGS)
612d69cdb36SRichard LoweCCFLAGS64=	$(CCOPTFLAG64) $($(MACH64)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
613d69cdb36SRichard Lowe		$(CCUSERFLAGS64)
61424da5b34Srie
6154c06356bSdh#
6164c06356bSdh#
6174c06356bSdh#
618d69cdb36SRichard LoweELFWRAP_FLAGS	=
6194c06356bSdhELFWRAP_FLAGS64	=	-64
6204c06356bSdh
62124da5b34Srie#
62224da5b34Srie# Various mapfiles that are used throughout the build, and delivered to
62324da5b34Srie# /usr/lib/ld.
6247c478bd9Sstevel@tonic-gate#
625cd3e9333SAli BahramiMAPFILE.NED_i386 =	$(SRC)/common/mapfiles/common/map.noexdata
62624da5b34SrieMAPFILE.NED_sparc =
62724da5b34SrieMAPFILE.NED =		$(MAPFILE.NED_$(MACH))
628cd3e9333SAli BahramiMAPFILE.PGA =		$(SRC)/common/mapfiles/common/map.pagealign
62924da5b34SrieMAPFILE.NES =		$(SRC)/common/mapfiles/common/map.noexstk
63024da5b34SrieMAPFILE.FLT =		$(SRC)/common/mapfiles/common/map.filter
631df4628cbSrieMAPFILE.LEX =		$(SRC)/common/mapfiles/common/map.lex.yy
63224da5b34Srie
6337c478bd9Sstevel@tonic-gate#
63424da5b34Srie# Generated mapfiles that are compiler specific, and used throughout the
63524da5b34Srie# build.  These mapfiles are not delivered in /usr/lib/ld.
6367c478bd9Sstevel@tonic-gate#
63724da5b34SrieMAPFILE.NGB_sparc=	$(SRC)/common/mapfiles/gen/sparc_cc_map.noexeglobs
63824da5b34Srie$(__GNUC64)MAPFILE.NGB_sparc= \
63924da5b34Srie			$(SRC)/common/mapfiles/gen/sparc_gcc_map.noexeglobs
64024da5b34SrieMAPFILE.NGB_sparcv9=	$(SRC)/common/mapfiles/gen/sparcv9_cc_map.noexeglobs
64124da5b34Srie$(__GNUC64)MAPFILE.NGB_sparcv9= \
64224da5b34Srie			$(SRC)/common/mapfiles/gen/sparcv9_gcc_map.noexeglobs
64324da5b34SrieMAPFILE.NGB_i386=	$(SRC)/common/mapfiles/gen/i386_cc_map.noexeglobs
64424da5b34Srie$(__GNUC64)MAPFILE.NGB_i386= \
64524da5b34Srie			$(SRC)/common/mapfiles/gen/i386_gcc_map.noexeglobs
64624da5b34SrieMAPFILE.NGB_amd64=	$(SRC)/common/mapfiles/gen/amd64_cc_map.noexeglobs
64724da5b34Srie$(__GNUC64)MAPFILE.NGB_amd64= \
64824da5b34Srie			$(SRC)/common/mapfiles/gen/amd64_gcc_map.noexeglobs
64924da5b34SrieMAPFILE.NGB =		$(MAPFILE.NGB_$(MACH))
65024da5b34Srie
65124da5b34Srie#
65224da5b34Srie# A generic interface mapfile name, used by various dynamic objects to define
65324da5b34Srie# the interfaces and interposers the object must export.
65424da5b34Srie#
65524da5b34SrieMAPFILE.INT =		mapfile-intf
65624da5b34Srie
657d69cdb36SRichard Lowe#
6587c478bd9Sstevel@tonic-gate# LDLIBS32 can be set in the environment to override the following assignment.
6597c478bd9Sstevel@tonic-gate# LDLIBS64 can be set to override the assignment made in Makefile.master.64.
6607c478bd9Sstevel@tonic-gate# These environment settings make sure that no libraries are searched outside
6617c478bd9Sstevel@tonic-gate# of the local workspace proto area:
6627c478bd9Sstevel@tonic-gate#	LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
6637c478bd9Sstevel@tonic-gate#	LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
6647c478bd9Sstevel@tonic-gate#
6657c478bd9Sstevel@tonic-gateLDLIBS32 =	$(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
666494f7e12SKeith M WesolowskiLDLIBS32 +=	$(ADJUNCT_PROTO:%=-L%/usr/lib -L%/lib)
6677c478bd9Sstevel@tonic-gateLDLIBS.cmd = 	$(LDLIBS32)
6687c478bd9Sstevel@tonic-gateLDLIBS.lib =	$(LDLIBS32)
6697c478bd9Sstevel@tonic-gate#
6707c478bd9Sstevel@tonic-gate# Define compilation macros.
6717c478bd9Sstevel@tonic-gate#
6727c478bd9Sstevel@tonic-gateCOMPILE.c=	$(CC) $(CFLAGS) $(CPPFLAGS) -c
6737c478bd9Sstevel@tonic-gateCOMPILE64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) -c
6747c478bd9Sstevel@tonic-gateCOMPILE.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) -c
6757c478bd9Sstevel@tonic-gateCOMPILE64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
6767c478bd9Sstevel@tonic-gateCOMPILE.s=	$(AS) $(ASFLAGS) $(AS_CPPFLAGS)
6777c478bd9Sstevel@tonic-gateCOMPILE64.s=	$(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
6787c478bd9Sstevel@tonic-gateCOMPILE.d=	$(DTRACE) -G -32
6797c478bd9Sstevel@tonic-gateCOMPILE64.d=	$(DTRACE) -G -64
6804c06356bSdhCOMPILE.b=	$(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
6814c06356bSdhCOMPILE64.b=	$(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
6827c478bd9Sstevel@tonic-gate
6837c478bd9Sstevel@tonic-gateCLASSPATH=	.
6847c478bd9Sstevel@tonic-gateCOMPILE.java=	$(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
6857c478bd9Sstevel@tonic-gate
6867c478bd9Sstevel@tonic-gate#
6877c478bd9Sstevel@tonic-gate# Link time macros
6887c478bd9Sstevel@tonic-gate#
6897c478bd9Sstevel@tonic-gateCCNEEDED		= -lC
6906a3e8e86SRichard LoweCCEXTNEEDED		= -lCrun -lCstd
691494f7e12SKeith M Wesolowski$(__GNUC)CCNEEDED	= -L$(GCCLIBDIR) -lstdc++ -lgcc_s
6926a3e8e86SRichard Lowe$(__GNUC)CCEXTNEEDED	= $(CCNEEDED)
6937c478bd9Sstevel@tonic-gate
6947c478bd9Sstevel@tonic-gateLINK.c=		$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
6957c478bd9Sstevel@tonic-gateLINK64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
6967c478bd9Sstevel@tonic-gateNORUNPATH=	-norunpath -nolib
6977c478bd9Sstevel@tonic-gateLINK.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
6987c478bd9Sstevel@tonic-gate		$(LDFLAGS) $(CCNEEDED)
6997c478bd9Sstevel@tonic-gateLINK64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
7007c478bd9Sstevel@tonic-gate		$(LDFLAGS) $(CCNEEDED)
7017c478bd9Sstevel@tonic-gate
7027c478bd9Sstevel@tonic-gate#
7037c478bd9Sstevel@tonic-gate# lint macros
7047c478bd9Sstevel@tonic-gate#
7057c478bd9Sstevel@tonic-gate# Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
7067c478bd9Sstevel@tonic-gate# ON is built with a version of lint that has the fix for 4484186.
7077c478bd9Sstevel@tonic-gate#
7087c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS =	-errtags=yes -s
7097c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PTRDIFF_OVERFLOW
7107c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_NARROW_CONV
7117c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-U__PRAGMA_REDEFINE_EXTNAME
7127c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	$(C99LMODE)
7137c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-errsecurity=$(SECLEVEL)
7147c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_SEC_CREAT_WITHOUT_EXCL
7157c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_SEC_FORBIDDEN_WARN_CREAT
7167c478bd9Sstevel@tonic-gate# XX64 -- really only needed for amd64 lint
7177c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_INT_TO_SMALL_INT
7187c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_CONST_TO_SMALL_INT
7197c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_TO_SMALL_INT
7207c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_TO_PTR_FROM_INT
7217c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_COMP_INT_WITH_LARGE_INT
7227c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_INTEGRAL_CONST_EXP_EXPECTED
7237c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PASS_INT_TO_SMALL_INT
7247c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PTR_CONV_LOSES_BITS
7257c478bd9Sstevel@tonic-gate
72647842382SJames Carlson# This forces lint to pick up note.h and sys/note.h from Devpro rather than
72747842382SJames Carlson# from the proto area.  The note.h that ON delivers would disable NOTE().
72847842382SJames CarlsonONLY_LINT_DEFS =	-I$(SPRO_VROOT)/prod/include/lint
72947842382SJames Carlson
7307c478bd9Sstevel@tonic-gateSECLEVEL=	core
73147842382SJames CarlsonLINT.c=		$(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS) $(CPPFLAGS) \
73247842382SJames Carlson		$(ALWAYS_LINT_DEFS)
73347842382SJames CarlsonLINT64.c=	$(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS64) $(CPPFLAGS) \
73447842382SJames Carlson		$(ALWAYS_LINT_DEFS)
7357c478bd9Sstevel@tonic-gateLINT.s=		$(LINT.c)
7367c478bd9Sstevel@tonic-gate
7377c478bd9Sstevel@tonic-gate# For some future builds, NATIVE_MACH and MACH might be different.
7387c478bd9Sstevel@tonic-gate# Therefore, NATIVE_MACH needs to be redefined in the
7397c478bd9Sstevel@tonic-gate# environment as `uname -p` to override this macro.
7407c478bd9Sstevel@tonic-gate#
7417c478bd9Sstevel@tonic-gate# For now at least, we cross-compile amd64 on i386 machines.
7427c478bd9Sstevel@tonic-gateNATIVE_MACH=	$(MACH:amd64=i386)
7437c478bd9Sstevel@tonic-gate
7447c478bd9Sstevel@tonic-gate# Define native compilation macros
7457c478bd9Sstevel@tonic-gate#
7467c478bd9Sstevel@tonic-gate
7477c478bd9Sstevel@tonic-gate# Base directory where compilers are loaded.
7487c478bd9Sstevel@tonic-gate# Defined here so it can be overridden by developer.
7497c478bd9Sstevel@tonic-gate#
7507c478bd9Sstevel@tonic-gateSPRO_ROOT=		$(BUILD_TOOLS)/SUNWspro
7510bb07399SNick ToddSPRO_VROOT=		$(SPRO_ROOT)/SS12
7527c478bd9Sstevel@tonic-gateGNU_ROOT=		$(SFW_ROOT)
7537c478bd9Sstevel@tonic-gate
7542418f65fSSurya Prakki# Till SS12u1 formally becomes the NV CBE, LINT is hard
7552418f65fSSurya Prakki# coded to be picked up from the $SPRO_ROOT/sunstudio12.1/
7562418f65fSSurya Prakki# location. Impacted variables are sparc_LINT, sparcv9_LINT,
7572418f65fSSurya Prakki# i386_LINT, amd64_LINT.
7582418f65fSSurya Prakki# Reset them when SS12u1 is rolled out.
7592418f65fSSurya Prakki#
7602418f65fSSurya Prakki
7617c478bd9Sstevel@tonic-gate# Specify platform compiler versions for languages
7627c478bd9Sstevel@tonic-gate# that we use (currently only c and c++).
7637c478bd9Sstevel@tonic-gate#
764bf40377cSwesolowssparc_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
765bf40377cSwesolows$(__GNUC)sparc_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
766bf40377cSwesolowssparc_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
767bf40377cSwesolows$(__GNUC)sparc_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
7687c478bd9Sstevel@tonic-gatesparc_CPP=		/usr/ccs/lib/cpp
7697c478bd9Sstevel@tonic-gatesparc_AS=		/usr/ccs/bin/as -xregsym=no
7707c478bd9Sstevel@tonic-gatesparc_LD=		/usr/ccs/bin/ld
7712418f65fSSurya Prakkisparc_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
7727c478bd9Sstevel@tonic-gate
773bf40377cSwesolowssparcv9_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
774bf40377cSwesolows$(__GNUC64)sparcv9_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
775bf40377cSwesolowssparcv9_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
776bf40377cSwesolows$(__GNUC64)sparcv9_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
7777c478bd9Sstevel@tonic-gatesparcv9_CPP=		/usr/ccs/lib/cpp
7787c478bd9Sstevel@tonic-gatesparcv9_AS=		/usr/ccs/bin/as -xregsym=no
7797c478bd9Sstevel@tonic-gatesparcv9_LD=		/usr/ccs/bin/ld
7802418f65fSSurya Prakkisparcv9_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
7817c478bd9Sstevel@tonic-gate
7827c478bd9Sstevel@tonic-gatei386_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
7837c478bd9Sstevel@tonic-gate$(__GNUC)i386_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
7847c478bd9Sstevel@tonic-gatei386_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
7857c478bd9Sstevel@tonic-gate$(__GNUC)i386_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
7867c478bd9Sstevel@tonic-gatei386_CPP=		/usr/ccs/lib/cpp
7877c478bd9Sstevel@tonic-gatei386_AS=		/usr/ccs/bin/as
7887c478bd9Sstevel@tonic-gate$(__GNUC)i386_AS=	$(ONBLD_TOOLS)/bin/$(MACH)/aw
7897c478bd9Sstevel@tonic-gatei386_LD=		/usr/ccs/bin/ld
7902418f65fSSurya Prakkii386_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
7917c478bd9Sstevel@tonic-gate
7927c478bd9Sstevel@tonic-gateamd64_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
7937c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
7947c478bd9Sstevel@tonic-gateamd64_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
7957c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
7967c478bd9Sstevel@tonic-gateamd64_CPP=		/usr/ccs/lib/cpp
7977c478bd9Sstevel@tonic-gateamd64_AS=		$(ONBLD_TOOLS)/bin/$(MACH)/aw
7987c478bd9Sstevel@tonic-gateamd64_LD=		/usr/ccs/bin/ld
7992418f65fSSurya Prakkiamd64_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
8007c478bd9Sstevel@tonic-gate
8017c478bd9Sstevel@tonic-gateNATIVECC=		$($(NATIVE_MACH)_CC)
8027c478bd9Sstevel@tonic-gateNATIVECCC=		$($(NATIVE_MACH)_CCC)
8037c478bd9Sstevel@tonic-gateNATIVECPP=		$($(NATIVE_MACH)_CPP)
8047c478bd9Sstevel@tonic-gateNATIVEAS=		$($(NATIVE_MACH)_AS)
8057c478bd9Sstevel@tonic-gateNATIVELD=		$($(NATIVE_MACH)_LD)
8067c478bd9Sstevel@tonic-gateNATIVELINT=		$($(NATIVE_MACH)_LINT)
8077c478bd9Sstevel@tonic-gate
8087c478bd9Sstevel@tonic-gate#
8097c478bd9Sstevel@tonic-gate# Makefile.master.64 overrides these settings
8107c478bd9Sstevel@tonic-gate#
8117c478bd9Sstevel@tonic-gateCC=			$(NATIVECC)
8127c478bd9Sstevel@tonic-gateCCC=			$(NATIVECCC)
8137c478bd9Sstevel@tonic-gateCPP=			$(NATIVECPP)
8147c478bd9Sstevel@tonic-gateAS=			$(NATIVEAS)
8157c478bd9Sstevel@tonic-gateLD=			$(NATIVELD)
8167c478bd9Sstevel@tonic-gateLINT=			$(NATIVELINT)
8177c478bd9Sstevel@tonic-gate
81802e56f3fSwesolows# The real compilers used for this build
81902e56f3fSwesolowsCW_CC_CMD=		$(CC) -_compiler
82002e56f3fSwesolowsCW_CCC_CMD=		$(CCC) -_compiler
82102e56f3fSwesolowsREAL_CC=		$(CW_CC_CMD:sh)
82202e56f3fSwesolowsREAL_CCC=		$(CW_CCC_CMD:sh)
82302e56f3fSwesolows
8247c478bd9Sstevel@tonic-gate# Pass -Y flag to cpp (method of which is release-dependent)
8257c478bd9Sstevel@tonic-gateCCYFLAG=		-Y I,
8267c478bd9Sstevel@tonic-gate
8277c478bd9Sstevel@tonic-gateBDIRECT=	-Bdirect
8287c478bd9Sstevel@tonic-gateBDYNAMIC=	-Bdynamic
8297c478bd9Sstevel@tonic-gateBLOCAL=		-Blocal
83024da5b34SrieBNODIRECT=	-Bnodirect
8317c478bd9Sstevel@tonic-gateBREDUCE=	-Breduce
8327c478bd9Sstevel@tonic-gateBSTATIC=	-Bstatic
8337c478bd9Sstevel@tonic-gate
8347c478bd9Sstevel@tonic-gateZDEFS=		-zdefs
83524da5b34SrieZDIRECT=	-zdirect
8367c478bd9Sstevel@tonic-gateZIGNORE=	-zignore
8377c478bd9Sstevel@tonic-gateZINITFIRST=	-zinitfirst
8387c478bd9Sstevel@tonic-gateZINTERPOSE=	-zinterpose
8397c478bd9Sstevel@tonic-gateZLAZYLOAD=	-zlazyload
8407c478bd9Sstevel@tonic-gateZLOADFLTR=	-zloadfltr
8417c478bd9Sstevel@tonic-gateZMULDEFS=	-zmuldefs
8427c478bd9Sstevel@tonic-gateZNODEFAULTLIB=	-znodefaultlib
8437c478bd9Sstevel@tonic-gateZNODEFS=	-znodefs
8447c478bd9Sstevel@tonic-gateZNODELETE=	-znodelete
8457c478bd9Sstevel@tonic-gateZNODLOPEN=	-znodlopen
8467c478bd9Sstevel@tonic-gateZNODUMP=	-znodump
8477c478bd9Sstevel@tonic-gateZNOLAZYLOAD=	-znolazyload
8482a8d6ebaSRod EvansZNOLDYNSYM=	-znoldynsym
84902e56f3fSwesolowsZNORELOC=	-znoreloc
8507c478bd9Sstevel@tonic-gateZNOVERSION=	-znoversion
85122337b4bSrieZRECORD=	-zrecord
8527c478bd9Sstevel@tonic-gateZREDLOCSYM=	-zredlocsym
8537c478bd9Sstevel@tonic-gateZTEXT=		-ztext
85424da5b34SrieZVERBOSE=	-zverbose
8557c478bd9Sstevel@tonic-gate
8567c478bd9Sstevel@tonic-gateGSHARED=	-G
8577c478bd9Sstevel@tonic-gateCCMT=		-mt
8587c478bd9Sstevel@tonic-gate
8597c478bd9Sstevel@tonic-gate# Handle different PIC models on different ISAs
8607c478bd9Sstevel@tonic-gate# (May be overridden by lower-level Makefiles)
8617c478bd9Sstevel@tonic-gate
8627c478bd9Sstevel@tonic-gatesparc_C_PICFLAGS =	-K pic
8637c478bd9Sstevel@tonic-gatesparcv9_C_PICFLAGS =	-K pic
8647c478bd9Sstevel@tonic-gatei386_C_PICFLAGS =	-K pic
8657c478bd9Sstevel@tonic-gateamd64_C_PICFLAGS =	-K pic
8667c478bd9Sstevel@tonic-gateC_PICFLAGS =		$($(MACH)_C_PICFLAGS)
8677c478bd9Sstevel@tonic-gateC_PICFLAGS64 =		$($(MACH64)_C_PICFLAGS)
8687c478bd9Sstevel@tonic-gate
8697c478bd9Sstevel@tonic-gatesparc_C_BIGPICFLAGS =	-K PIC
8707c478bd9Sstevel@tonic-gatesparcv9_C_BIGPICFLAGS =	-K PIC
8717c478bd9Sstevel@tonic-gatei386_C_BIGPICFLAGS =	-K PIC
8727c478bd9Sstevel@tonic-gateamd64_C_BIGPICFLAGS =	-K PIC
8737c478bd9Sstevel@tonic-gateC_BIGPICFLAGS =		$($(MACH)_C_BIGPICFLAGS)
8747c478bd9Sstevel@tonic-gateC_BIGPICFLAGS64 =	$($(MACH64)_C_BIGPICFLAGS)
8757c478bd9Sstevel@tonic-gate
8767c478bd9Sstevel@tonic-gate# CC requires there to be no space between '-K' and 'pic' or 'PIC'.
8777c478bd9Sstevel@tonic-gatesparc_CC_PICFLAGS =	-Kpic
8787c478bd9Sstevel@tonic-gatesparcv9_CC_PICFLAGS =	-KPIC
8797c478bd9Sstevel@tonic-gatei386_CC_PICFLAGS = 	-Kpic
8807c478bd9Sstevel@tonic-gateamd64_CC_PICFLAGS = 	-Kpic
8817c478bd9Sstevel@tonic-gateCC_PICFLAGS =		$($(MACH)_CC_PICFLAGS)
8827c478bd9Sstevel@tonic-gateCC_PICFLAGS64 =		$($(MACH64)_CC_PICFLAGS)
8837c478bd9Sstevel@tonic-gate
8847c478bd9Sstevel@tonic-gateAS_PICFLAGS=		$(C_PICFLAGS)
8857c478bd9Sstevel@tonic-gateAS_BIGPICFLAGS=		$(C_BIGPICFLAGS)
8867c478bd9Sstevel@tonic-gate
8877c478bd9Sstevel@tonic-gate#
8887c478bd9Sstevel@tonic-gate# Default label for CTF sections
8897c478bd9Sstevel@tonic-gate#
8907c478bd9Sstevel@tonic-gateCTFCVTFLAGS=		-i -L VERSION
891d69cdb36SRichard Lowe$(SRCDBGBLD)CTFCVTFLAGS 	+= -g
8927c478bd9Sstevel@tonic-gate
8937c478bd9Sstevel@tonic-gate#
894d69cdb36SRichard Lowe# Override to pass module-specific flags to ctfmerge.  Currently used only by
895d69cdb36SRichard Lowe# krtld to turn on fuzzy matching, and source-level debugging to inhibit
896d69cdb36SRichard Lowe# stripping.
8977c478bd9Sstevel@tonic-gate#
8987c478bd9Sstevel@tonic-gateCTFMRGFLAGS=
899d69cdb36SRichard Lowe$(SRCDBGBLD)CTFMRGFLAGS 	+= -g
900d69cdb36SRichard Lowe
9017c478bd9Sstevel@tonic-gate
9027c478bd9Sstevel@tonic-gateCTFCONVERT_O		= $(CTFCONVERT) $(CTFCVTFLAGS) $@
9037c478bd9Sstevel@tonic-gate
9047c478bd9Sstevel@tonic-gateELFSIGN_O=	$(TRUE)
9057c478bd9Sstevel@tonic-gateELFSIGN_CRYPTO=	$(ELFSIGN_O)
9067c478bd9Sstevel@tonic-gateELFSIGN_OBJECT=	$(ELFSIGN_O)
9077c478bd9Sstevel@tonic-gate
9087c478bd9Sstevel@tonic-gate# Rules (normally from make.rules) and macros which are used for post
9097c478bd9Sstevel@tonic-gate# processing files. Normally, these do stripping of the comment section
9107c478bd9Sstevel@tonic-gate# automatically.
9117c478bd9Sstevel@tonic-gate#    RELEASE_CM:	Should be editted to reflect the release.
9127c478bd9Sstevel@tonic-gate#    POST_PROCESS_O:	Post-processing for `.o' files.
9137c478bd9Sstevel@tonic-gate#    POST_PROCESS_A:	Post-processing for `.a' files (currently null).
9147c478bd9Sstevel@tonic-gate#    POST_PROCESS_SO:	Post-processing for `.so' files.
9157c478bd9Sstevel@tonic-gate#    POST_PROCESS:	Post-processing for executable files (no suffix).
9167c478bd9Sstevel@tonic-gate# Note that these macros are not completely generalized as they are to be
9177c478bd9Sstevel@tonic-gate# used with the file name to be processed following.
9187c478bd9Sstevel@tonic-gate#
9197c478bd9Sstevel@tonic-gate# It is left as an exercise to Release Engineering to embellish the generation
9207c478bd9Sstevel@tonic-gate# of the release comment string.
9217c478bd9Sstevel@tonic-gate#
9227c478bd9Sstevel@tonic-gate#	If this is a standard development build:
9237c478bd9Sstevel@tonic-gate#		compress the comment section (mcs -c)
9247c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
9257c478bd9Sstevel@tonic-gate#		add the development specific comment (mcs -a $(DEV_CM))
9267c478bd9Sstevel@tonic-gate#
9277c478bd9Sstevel@tonic-gate#	If this is an installation build:
9287c478bd9Sstevel@tonic-gate#		delete the comment section (mcs -d)
9297c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
9307c478bd9Sstevel@tonic-gate#		add the development specific comment (mcs -a $(DEV_CM))
9317c478bd9Sstevel@tonic-gate#
9327c478bd9Sstevel@tonic-gate#	If this is an release build:
9337c478bd9Sstevel@tonic-gate#		delete the comment section (mcs -d)
9347c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
9357c478bd9Sstevel@tonic-gate#
9367c478bd9Sstevel@tonic-gate# The following list of macros are used in the definition of RELEASE_CM
9377c478bd9Sstevel@tonic-gate# which is used to label all binaries in the build:
9387c478bd9Sstevel@tonic-gate#
9397c478bd9Sstevel@tonic-gate# 	RELEASE		Specific release of the build, eg: 5.2
9402032ea7bSmeem#	RELEASE_MAJOR	Major version number part of $(RELEASE)
9412032ea7bSmeem#	RELEASE_MINOR	Minor version number part of $(RELEASE)
9427c478bd9Sstevel@tonic-gate#	VERSION		Version of the build (alpha, beta, Generic)
9437c478bd9Sstevel@tonic-gate#	PATCHID		If this is a patch this value should contain
9447c478bd9Sstevel@tonic-gate#			the patchid value (eg: "Generic 100832-01"), otherwise
9457c478bd9Sstevel@tonic-gate#			it will be set to $(VERSION)
9467c478bd9Sstevel@tonic-gate#	RELEASE_DATE	Date of the Release Build
9477c478bd9Sstevel@tonic-gate#	PATCH_DATE	Date the patch was created, if this is blank it
9487c478bd9Sstevel@tonic-gate#			will default to the RELEASE_DATE
9497c478bd9Sstevel@tonic-gate#
9502032ea7bSmeemRELEASE_MAJOR=	5
9512032ea7bSmeemRELEASE_MINOR=	11
9522032ea7bSmeemRELEASE=	$(RELEASE_MAJOR).$(RELEASE_MINOR)
9537c478bd9Sstevel@tonic-gateVERSION=	SunOS Development
9547c478bd9Sstevel@tonic-gatePATCHID=	$(VERSION)
95548bc00d6SjmcpRELEASE_DATE=	release date not set
9567c478bd9Sstevel@tonic-gatePATCH_DATE=	$(RELEASE_DATE)
9577c478bd9Sstevel@tonic-gateRELEASE_CM=	"@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
95848bc00d6SjmcpDEV_CM=		"@($(POUND_SIGN))SunOS Internal Development: non-nightly build"
9597c478bd9Sstevel@tonic-gate
96034ae5cdfSJosef 'Jeff' SipekPROCESS_COMMENT=  @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
9617c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PROCESS_COMMENT=   @?${MCS} -d -a $(RELEASE_CM)
9627c478bd9Sstevel@tonic-gate
9637c478bd9Sstevel@tonic-gateSTRIP_STABS=			   :
9647c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)STRIP_STABS=	   $(STRIP) -x $@
965d69cdb36SRichard Lowe$(SRCDBGBLD)STRIP_STABS=	   :
9667c478bd9Sstevel@tonic-gate
9677c478bd9Sstevel@tonic-gatePOST_PROCESS_O=		$(PROCESS_COMMENT) $@
9687c478bd9Sstevel@tonic-gatePOST_PROCESS_A=
9697c478bd9Sstevel@tonic-gatePOST_PROCESS_SO=	$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
9707c478bd9Sstevel@tonic-gate			$(ELFSIGN_OBJECT)
9718ad60789SriePOST_PROCESS=		$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
9728ad60789Srie			$(ELFSIGN_OBJECT)
9737c478bd9Sstevel@tonic-gate
974b31b5de1SJerry Gilliam#
975b31b5de1SJerry Gilliam# chk4ubin is a tool that inspects a module for a symbol table
976b31b5de1SJerry Gilliam# ELF section size which can trigger an OBP bug on older platforms.
977b31b5de1SJerry Gilliam# This problem affects only specific sun4u bootable modules.
978b31b5de1SJerry Gilliam#
979b31b5de1SJerry GilliamCHK4UBIN=	$(ONBLD_TOOLS)/bin/$(MACH)/chk4ubin
980b31b5de1SJerry GilliamCHK4UBINFLAGS=
981b31b5de1SJerry GilliamCHK4UBINARY=	$(CHK4UBIN) $(CHK4UBINFLAGS) $@
982b31b5de1SJerry Gilliam
9837c478bd9Sstevel@tonic-gate#
9847c478bd9Sstevel@tonic-gate# PKGARCHIVE specifies the default location where packages should be
9857c478bd9Sstevel@tonic-gate# placed if built.
9867c478bd9Sstevel@tonic-gate#
9877c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PKGARCHIVESUFFIX=	-nd
9887c478bd9Sstevel@tonic-gatePKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
9897c478bd9Sstevel@tonic-gate
990ead1f93eSLiane Praza#
991ead1f93eSLiane Praza# The repositories will be created with these publisher settings.  To
992ead1f93eSLiane Praza# update an image to the resulting repositories, this must match the
993ead1f93eSLiane Praza# publisher name provided to "pkg set-publisher."
994ead1f93eSLiane Praza#
995ead1f93eSLiane PrazaPKGPUBLISHER_REDIST=	on-nightly
996ead1f93eSLiane PrazaPKGPUBLISHER_NONREDIST=	on-extra
997ead1f93eSLiane Praza
9987c478bd9Sstevel@tonic-gate#	Default build rules which perform comment section post-processing.
9997c478bd9Sstevel@tonic-gate#
10007c478bd9Sstevel@tonic-gate.c:
10017c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $< $(LDLIBS)
10027c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10037c478bd9Sstevel@tonic-gate.c.o:
10047c478bd9Sstevel@tonic-gate	$(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
10057c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10067c478bd9Sstevel@tonic-gate.c.a:
10077c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $% $<
10087c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
10097c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
10107c478bd9Sstevel@tonic-gate	$(RM) $%
10117c478bd9Sstevel@tonic-gate.s.o:
10127c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
10137c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10147c478bd9Sstevel@tonic-gate.s.a:
10157c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $% $<
10167c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
10177c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
10187c478bd9Sstevel@tonic-gate	$(RM) $%
10197c478bd9Sstevel@tonic-gate.cc:
10207c478bd9Sstevel@tonic-gate	$(LINK.cc) -o $@ $< $(LDLIBS)
10217c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10227c478bd9Sstevel@tonic-gate.cc.o:
10237c478bd9Sstevel@tonic-gate	$(COMPILE.cc) $(OUTPUT_OPTION) $<
10247c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10257c478bd9Sstevel@tonic-gate.cc.a:
10267c478bd9Sstevel@tonic-gate	$(COMPILE.cc) -o $% $<
10277c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
10287c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
10297c478bd9Sstevel@tonic-gate	$(RM) $%
10307c478bd9Sstevel@tonic-gate.y:
10317c478bd9Sstevel@tonic-gate	$(YACC.y) $<
10327c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ y.tab.c $(LDLIBS)
10337c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10347c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
10357c478bd9Sstevel@tonic-gate.y.o:
10367c478bd9Sstevel@tonic-gate	$(YACC.y) $<
10377c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
10387c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10397c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
10407c478bd9Sstevel@tonic-gate.l:
10417c478bd9Sstevel@tonic-gate	$(RM) $*.c
10427c478bd9Sstevel@tonic-gate	$(LEX.l) $< > $*.c
10437c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $*.c -ll $(LDLIBS)
10447c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10457c478bd9Sstevel@tonic-gate	$(RM) $*.c
10467c478bd9Sstevel@tonic-gate.l.o:
10477c478bd9Sstevel@tonic-gate	$(RM) $*.c
10487c478bd9Sstevel@tonic-gate	$(LEX.l) $< > $*.c
10497c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
10507c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10517c478bd9Sstevel@tonic-gate	$(RM) $*.c
10527c478bd9Sstevel@tonic-gate
10534c06356bSdh.bin.o:
10544c06356bSdh	$(COMPILE.b) -o $@ $<
10554c06356bSdh	$(POST_PROCESS_O)
10564c06356bSdh
10577c478bd9Sstevel@tonic-gate.java.class:
10587c478bd9Sstevel@tonic-gate	$(COMPILE.java) $<
10597c478bd9Sstevel@tonic-gate
1060a778b211Scarlsonj# Bourne and Korn shell script message catalog build rules.
1061a778b211Scarlsonj# We extract all gettext strings with sed(1) (being careful to permit
1062a778b211Scarlsonj# multiple gettext strings on the same line), weed out the dups, and
1063a778b211Scarlsonj# build the catalogue with awk(1).
10647c478bd9Sstevel@tonic-gate
1065a778b211Scarlsonj.sh.po .ksh.po:
1066a778b211Scarlsonj	$(SED) -n -e ":a" 				\
10677c478bd9Sstevel@tonic-gate		  -e "h" 					\
10687c478bd9Sstevel@tonic-gate		  -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p"	\
10697c478bd9Sstevel@tonic-gate		  -e "x"					\
10707c478bd9Sstevel@tonic-gate		  -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/"	\
10717c478bd9Sstevel@tonic-gate		  -e "t a"					\
10727c478bd9Sstevel@tonic-gate	       $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
10737c478bd9Sstevel@tonic-gate
1074a778b211Scarlsonj#
1075a778b211Scarlsonj# Python and Perl executable and message catalog build rules.
1076a778b211Scarlsonj#
1077cdf0c1d5Smjnelson.SUFFIXES: .pl .pm .py .pyc
1078a778b211Scarlsonj
1079a778b211Scarlsonj.pl:
1080a778b211Scarlsonj	$(RM) $@;
1081a778b211Scarlsonj	$(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@;
1082a778b211Scarlsonj	$(CHMOD) +x $@
1083a778b211Scarlsonj
1084a778b211Scarlsonj.py:
1085a778b211Scarlsonj	$(RM) $@; $(CAT) $< > $@; $(CHMOD) +x $@
1086a778b211Scarlsonj
1087cdf0c1d5Smjnelson.py.pyc:
1088cdf0c1d5Smjnelson	$(RM) $@
1089cdf0c1d5Smjnelson	$(PYTHON) -mpy_compile $<
1090cdf0c1d5Smjnelson	@[ $(<)c = $@ ] || $(MV) $(<)c $@
1091cdf0c1d5Smjnelson
109214843421SMatthew Ahrens.py.po:
109314843421SMatthew Ahrens	$(GNUXGETTEXT) $(GNUXGETFLAGS) -d $(<F:%.py=%) $< ;
109414843421SMatthew Ahrens
1095a778b211Scarlsonj.pl.po .pm.po:
1096a778b211Scarlsonj	$(XGETTEXT) $(XGETFLAGS) -d $(<F) $< ;
1097a778b211Scarlsonj	$(RM)	$@ ;
1098a778b211Scarlsonj	$(SED) "/^domain/d" < $(<F).po > $@ ;
1099a778b211Scarlsonj	$(RM) $(<F).po
11009acbbeafSnn
11017c478bd9Sstevel@tonic-gate#
11027c478bd9Sstevel@tonic-gate# When using xgettext, we want messages to go to the default domain,
11037c478bd9Sstevel@tonic-gate# rather than the specified one.  This special version of the
11047c478bd9Sstevel@tonic-gate# COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
11057c478bd9Sstevel@tonic-gate# causing xgettext to put all messages into the default domain.
11067c478bd9Sstevel@tonic-gate#
11077c478bd9Sstevel@tonic-gateCPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
11087c478bd9Sstevel@tonic-gate
11097c478bd9Sstevel@tonic-gate.c.i:
11107c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $@
11117c478bd9Sstevel@tonic-gate
11127c478bd9Sstevel@tonic-gate.h.i:
11137c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $@
11147c478bd9Sstevel@tonic-gate
11157c478bd9Sstevel@tonic-gate.y.i:
11167c478bd9Sstevel@tonic-gate	$(YACC) -d $<
11177c478bd9Sstevel@tonic-gate	$(CPPFORPO) y.tab.c  > $@
1118d69cdb36SRichard Lowe	$(RM) y.tab.c
11197c478bd9Sstevel@tonic-gate
11207c478bd9Sstevel@tonic-gate.l.i:
11217c478bd9Sstevel@tonic-gate	$(LEX) $<
11227c478bd9Sstevel@tonic-gate	$(CPPFORPO) lex.yy.c  > $@
11237c478bd9Sstevel@tonic-gate	$(RM) lex.yy.c
11247c478bd9Sstevel@tonic-gate
11257c478bd9Sstevel@tonic-gate.c.po:
11267c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $<.i
11277c478bd9Sstevel@tonic-gate	$(BUILD.po)
11287c478bd9Sstevel@tonic-gate
11297c478bd9Sstevel@tonic-gate.y.po:
11307c478bd9Sstevel@tonic-gate	$(YACC) -d $<
11317c478bd9Sstevel@tonic-gate	$(CPPFORPO) y.tab.c  > $<.i
11327c478bd9Sstevel@tonic-gate	$(BUILD.po)
1133d69cdb36SRichard Lowe	$(RM) y.tab.c
11347c478bd9Sstevel@tonic-gate
11357c478bd9Sstevel@tonic-gate.l.po:
11367c478bd9Sstevel@tonic-gate	$(LEX) $<
11377c478bd9Sstevel@tonic-gate	$(CPPFORPO) lex.yy.c  > $<.i
11387c478bd9Sstevel@tonic-gate	$(BUILD.po)
11397c478bd9Sstevel@tonic-gate	$(RM) lex.yy.c
11407c478bd9Sstevel@tonic-gate
11417c478bd9Sstevel@tonic-gate#
11427c478bd9Sstevel@tonic-gate# Rules to perform stylistic checks
11437c478bd9Sstevel@tonic-gate#
1144a778b211Scarlsonj.SUFFIXES: .x .xml .check .xmlchk
11457c478bd9Sstevel@tonic-gate
11467c478bd9Sstevel@tonic-gate.h.check:
11477c478bd9Sstevel@tonic-gate	$(DOT_H_CHECK)
11487c478bd9Sstevel@tonic-gate
11497c478bd9Sstevel@tonic-gate.x.check:
11507c478bd9Sstevel@tonic-gate	$(DOT_X_CHECK)
11517c478bd9Sstevel@tonic-gate
11527c478bd9Sstevel@tonic-gate.xml.xmlchk:
11537c478bd9Sstevel@tonic-gate	$(MANIFEST_CHECK)
11547c478bd9Sstevel@tonic-gate
115532f1e47bSsommerfe#
115632f1e47bSsommerfe# Include rules to render automated sccs get rules "safe".
1157d69cdb36SRichard Lowe#
115832f1e47bSsommerfeinclude $(SRC)/Makefile.noget
1159