xref: /illumos-gate/usr/src/Makefile.master (revision 494f7e12)
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
32*494f7e12SKeith M Wesolowski#
33*494f7e12SKeith M Wesolowski# Adjunct root, containing an additional proto area to be used for headers
34*494f7e12SKeith M Wesolowski# and libraries.
35*494f7e12SKeith M Wesolowski#
36*494f7e12SKeith M WesolowskiADJUNCT_PROTO=
37*494f7e12SKeith M Wesolowski
38*494f7e12SKeith M Wesolowski#
39*494f7e12SKeith M Wesolowski# Adjunct for building things that run on the build machine.
40*494f7e12SKeith M Wesolowski#
41*494f7e12SKeith M WesolowskiNATIVE_ADJUNCT=	/usr
42*494f7e12SKeith 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# INTERNAL_RELEASE_BUILD is a subset of RELEASE_BUILD. It mostly controls
487c478bd9Sstevel@tonic-gate# identification strings. Enabling RELEASE_BUILD automatically enables
497c478bd9Sstevel@tonic-gate# INTERNAL_RELEASE_BUILD.
507c478bd9Sstevel@tonic-gate#
51fb9f9b97Skupfer# CLOSED_BUILD controls whether we try to build files under
52fb9f9b97Skupfer# usr/closed.  ("" means to build closed code, "#" means don't try to
53fb9f9b97Skupfer# build it.)  Skipping the closed code implies doing an export release
54fb9f9b97Skupfer# build.
557c478bd9Sstevel@tonic-gate#
567c478bd9Sstevel@tonic-gate# STRIP_COMMENTS toggles comment section striping. Generally the same setting
577c478bd9Sstevel@tonic-gate# as INTERNAL_RELEASE_BUILD.
587c478bd9Sstevel@tonic-gate#
597c478bd9Sstevel@tonic-gate# __GNUC toggles the building of ON components using gcc and related tools.
607c478bd9Sstevel@tonic-gate# Normally set to `#', set it to `' to do gcc build.
617c478bd9Sstevel@tonic-gate#
627c478bd9Sstevel@tonic-gate# The declaration POUND_SIGN is always '#'. This is needed to get around the
637c478bd9Sstevel@tonic-gate# make feature that '#' is always a comment delimiter, even when escaped or
6448bc00d6Sjmcp# quoted. We use this macro expansion method to get POUND_SIGN rather than
6548bc00d6Sjmcp# always breaking out a shell because the general case can cause a noticable
6648bc00d6Sjmcp# slowdown in build times when so many Makefiles include Makefile.master.
677c478bd9Sstevel@tonic-gate#
6848bc00d6Sjmcp# While the majority of users are expected to override the setting below
6948bc00d6Sjmcp# with an env file (via nightly or bldenv), if you aren't building that way
7048bc00d6Sjmcp# (ie, you're using "ws" or some other bootstrapping method) then you need
7148bc00d6Sjmcp# this definition in order to avoid the subshell invocation mentioned above.
7248bc00d6Sjmcp#
7348bc00d6Sjmcp
7448bc00d6SjmcpPRE_POUND=				pre\#
7548bc00d6SjmcpPOUND_SIGN=				$(PRE_POUND:pre\%=%)
767c478bd9Sstevel@tonic-gate
777c478bd9Sstevel@tonic-gateNOT_RELEASE_BUILD=
787c478bd9Sstevel@tonic-gateINTERNAL_RELEASE_BUILD=			$(POUND_SIGN)
797c478bd9Sstevel@tonic-gateRELEASE_BUILD=				$(POUND_SIGN)
807c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)NOT_RELEASE_BUILD=	$(POUND_SIGN)
817c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)INTERNAL_RELEASE_BUILD=
827c478bd9Sstevel@tonic-gatePATCH_BUILD=				$(POUND_SIGN)
837c478bd9Sstevel@tonic-gate
84fb9f9b97Skupfer# If CLOSED_IS_PRESENT is not set, assume the closed tree is present.
85fb9f9b97SkupferCLOSED_BUILD_1=	$(CLOSED_IS_PRESENT:yes=)
86fb9f9b97SkupferCLOSED_BUILD=	$(CLOSED_BUILD_1:no=$(POUND_SIGN))
87fb9f9b97Skupfer
887c478bd9Sstevel@tonic-gate# SPARC_BLD is '#' for an Intel build.
897c478bd9Sstevel@tonic-gate# INTEL_BLD is '#' for a Sparc build.
907c478bd9Sstevel@tonic-gateSPARC_BLD_1=    $(MACH:i386=$(POUND_SIGN))
917c478bd9Sstevel@tonic-gateSPARC_BLD=      $(SPARC_BLD_1:sparc=)
927c478bd9Sstevel@tonic-gateINTEL_BLD_1=    $(MACH:sparc=$(POUND_SIGN))
937c478bd9Sstevel@tonic-gateINTEL_BLD=      $(INTEL_BLD_1:i386=)
947c478bd9Sstevel@tonic-gate
957c478bd9Sstevel@tonic-gateSTRIP_COMMENTS=	$(INTERNAL_RELEASE_BUILD)
967c478bd9Sstevel@tonic-gate
97b83ec4edSjmcp# Are we building tonic closedbins? Unless you have used the
98b83ec4edSjmcp# -O flag to nightly or bldenv, leave the definition of TONICBUILD
99b83ec4edSjmcp# as $(POUND_SIGN).
100b83ec4edSjmcp#
101b83ec4edSjmcp# IF YOU CHANGE CLOSEDROOT, you MUST change install.bin
102b83ec4edSjmcp# to match the new definition.
103b83ec4edSjmcpTONICBUILD=     $(POUND_SIGN)
104b83ec4edSjmcp$(TONICBUILD)CLOSEDROOT= $(ROOT)-closed
105b83ec4edSjmcp
106b83ec4edSjmcp
1076a3e8e86SRichard Lowe# The variables below control the compilers used during the build.
1086a3e8e86SRichard Lowe# There are a number of permutations.
1096a3e8e86SRichard Lowe#
1106a3e8e86SRichard Lowe# __GNUC and __SUNC control (and indicate) the primary compiler.  Whichever
1116a3e8e86SRichard Lowe# one is not POUND_SIGN is the primary, with the other as the shadow.  They
1126a3e8e86SRichard Lowe# may also be used to control entirely compiler-specific Makefile assignments.
1136a3e8e86SRichard Lowe# __SUNC and Sun Studio are the default.
1146a3e8e86SRichard Lowe#
1156a3e8e86SRichard Lowe# __GNUC64 indicates that the 64bit build should use the GNU C compiler.
1166a3e8e86SRichard Lowe# There is no Sun C analogue.
1176a3e8e86SRichard Lowe#
1186a3e8e86SRichard Lowe# The following version-specific options are operative regardless of which
1196a3e8e86SRichard Lowe# compiler is primary, and control the versions of the given compilers to be
1206a3e8e86SRichard Lowe# used.  They also allow compiler-version specific Makefile fragments.
1216a3e8e86SRichard Lowe#
1226a3e8e86SRichard Lowe
1236a3e8e86SRichard Lowe__GNUC=			$(POUND_SIGN)
1246a3e8e86SRichard Lowe$(__GNUC)__SUNC=	$(POUND_SIGN)
1256a3e8e86SRichard Lowe__GNUC64=		$(__GNUC)
1267c478bd9Sstevel@tonic-gate
127fb9f9b97Skupfer# CLOSED is the root of the tree that contains source which isn't released
128fb9f9b97Skupfer# as open source
129fb9f9b97SkupferCLOSED=		$(SRC)/../closed
130fb9f9b97Skupfer
1317c478bd9Sstevel@tonic-gate# BUILD_TOOLS is the root of all tools including compilers.
1327c478bd9Sstevel@tonic-gate# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
1337c478bd9Sstevel@tonic-gate
1347c478bd9Sstevel@tonic-gateBUILD_TOOLS=		/ws/onnv-tools
1357c478bd9Sstevel@tonic-gateONBLD_TOOLS=		$(BUILD_TOOLS)/onbld
1367c478bd9Sstevel@tonic-gate
1377c478bd9Sstevel@tonic-gateJAVA_ROOT=	/usr/java
1387c478bd9Sstevel@tonic-gate
1397c478bd9Sstevel@tonic-gateSFW_ROOT=	/usr/sfw
140ebf35943SdinakSFWINCDIR=	$(SFW_ROOT)/include
1417c478bd9Sstevel@tonic-gateSFWLIBDIR=	$(SFW_ROOT)/lib
1427c478bd9Sstevel@tonic-gateSFWLIBDIR64=	$(SFW_ROOT)/lib/$(MACH64)
1437c478bd9Sstevel@tonic-gate
1441a5ea532SRichard LoweGCC_ROOT=	/opt/gcc/4.4.4
1456a3e8e86SRichard LoweGCCLIBDIR=	$(GCC_ROOT)/lib
1466a3e8e86SRichard LoweGCCLIBDIR64=	$(GCC_ROOT)/lib/$(MACH64)
1476a3e8e86SRichard Lowe
14811d7e819SRobert MustacchiDOCBOOK_XSL_ROOT=	/usr/share/sgml/docbook/xsl-stylesheets
14911d7e819SRobert Mustacchi
1507c478bd9Sstevel@tonic-gateRPCGEN=		/usr/bin/rpcgen
1517c478bd9Sstevel@tonic-gateSTABS=		$(ONBLD_TOOLS)/bin/$(MACH)/stabs
152ae115bc7SmrjELFEXTRACT=	$(ONBLD_TOOLS)/bin/$(MACH)/elfextract
153ae115bc7SmrjMBH_PATCH=	$(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
1547c478bd9Sstevel@tonic-gateECHO=		echo
1557c478bd9Sstevel@tonic-gateINS=		install
1567c478bd9Sstevel@tonic-gateTRUE=		true
1577c478bd9Sstevel@tonic-gateSYMLINK=	/usr/bin/ln -s
1587c478bd9Sstevel@tonic-gateLN=		/usr/bin/ln
1597c478bd9Sstevel@tonic-gateCHMOD=		/usr/bin/chmod
1607c478bd9Sstevel@tonic-gateMV=		/usr/bin/mv -f
1617c478bd9Sstevel@tonic-gateRM=		/usr/bin/rm -f
162f4b3ec61SdhCUT=		/usr/bin/cut
163f4b3ec61SdhNM=		/usr/ccs/bin/nm
164f4b3ec61SdhDIFF=		/usr/bin/diff
1657c478bd9Sstevel@tonic-gateGREP=		/usr/bin/grep
1661912d2c4SwesolowsEGREP=		/usr/bin/egrep
1674c06356bSdhELFWRAP=	/usr/bin/elfwrap
16832bd7e59SmjnelsonKSH93=		/usr/bin/ksh93
1697c478bd9Sstevel@tonic-gateSED=		/usr/bin/sed
1707c478bd9Sstevel@tonic-gateNAWK=		/usr/bin/nawk
1717c478bd9Sstevel@tonic-gateCP=		/usr/bin/cp -f
1727c478bd9Sstevel@tonic-gateMCS=		/usr/ccs/bin/mcs
1737c478bd9Sstevel@tonic-gateCAT=            /usr/bin/cat
17424da5b34SrieELFDUMP=	/usr/ccs/bin/elfdump
1757c478bd9Sstevel@tonic-gateM4=		/usr/ccs/bin/m4
1767c478bd9Sstevel@tonic-gateSTRIP=		/usr/ccs/bin/strip
1777c478bd9Sstevel@tonic-gateLEX=		/usr/ccs/bin/lex
178f2fc321bSekFLEX=		$(SFW_ROOT)/bin/flex
1797c478bd9Sstevel@tonic-gateYACC=		/usr/ccs/bin/yacc
1807c478bd9Sstevel@tonic-gateCPP=		/usr/lib/cpp
1817c478bd9Sstevel@tonic-gateJAVAC=		$(JAVA_ROOT)/bin/javac
1827c478bd9Sstevel@tonic-gateJAVAH=		$(JAVA_ROOT)/bin/javah
1837c478bd9Sstevel@tonic-gateJAVADOC=	$(JAVA_ROOT)/bin/javadoc
1847c478bd9Sstevel@tonic-gateRMIC=		$(JAVA_ROOT)/bin/rmic
1857c478bd9Sstevel@tonic-gateJAR=		$(JAVA_ROOT)/bin/jar
1867c478bd9Sstevel@tonic-gateCTFCONVERT=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
1877c478bd9Sstevel@tonic-gateCTFMERGE=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
1887c478bd9Sstevel@tonic-gateCTFSTABS=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
189a0ed5030SJason KingCTFSTRIP=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstrip
190d0e51869SamwNDRGEN=		$(ONBLD_TOOLS)/bin/$(MACH)/ndrgen
1917c478bd9Sstevel@tonic-gateGENOFFSETS=	$(ONBLD_TOOLS)/bin/genoffsets
1927c478bd9Sstevel@tonic-gateCTFCVTPTBL=	$(ONBLD_TOOLS)/bin/ctfcvtptbl
1937c478bd9Sstevel@tonic-gateCTFFINDMOD=	$(ONBLD_TOOLS)/bin/ctffindmod
1947c478bd9Sstevel@tonic-gateXREF=		$(ONBLD_TOOLS)/bin/xref
1957c478bd9Sstevel@tonic-gateFIND=		/usr/bin/find
1967c478bd9Sstevel@tonic-gatePERL=		/usr/bin/perl
19787ab3622SRichard LowePYTHON_26=	/usr/bin/python2.6
1986066d16eSPiotr JasiukajtisPYTHON=		$(PYTHON_26)
1997c478bd9Sstevel@tonic-gateSORT=		/usr/bin/sort
2007c478bd9Sstevel@tonic-gateTOUCH=		/usr/bin/touch
2017c478bd9Sstevel@tonic-gateWC=		/usr/bin/wc
2027c478bd9Sstevel@tonic-gateXARGS=		/usr/bin/xargs
2032cc2d1f4SdarrenmELFEDIT=	/usr/bin/elfedit
2047c478bd9Sstevel@tonic-gateELFSIGN=	/usr/bin/elfsign
2050a49f0acSAdam H. LeventhalDTRACE=		/usr/sbin/dtrace -xnolibs
206620753d0SjmcpUNIQ=		/usr/bin/uniq
2072ad72058SGarrett D'AmoreTAR=		/usr/bin/tar
2087c478bd9Sstevel@tonic-gate
2097c478bd9Sstevel@tonic-gateFILEMODE=	644
2107c478bd9Sstevel@tonic-gateDIRMODE=	755
2117c478bd9Sstevel@tonic-gate
2127c478bd9Sstevel@tonic-gate#
2137c478bd9Sstevel@tonic-gate# The version of the patch makeup table optimized for build-time use.  Used
2147c478bd9Sstevel@tonic-gate# during patch builds only.
2157c478bd9Sstevel@tonic-gate$(PATCH_BUILD)PMTMO_FILE=$(SRC)/patch_makeup_table.mo
2167c478bd9Sstevel@tonic-gate
2177c478bd9Sstevel@tonic-gate# Declare that nothing should be built in parallel.
2187c478bd9Sstevel@tonic-gate# Individual Makefiles can use the .PARALLEL target to declare otherwise.
2197c478bd9Sstevel@tonic-gate.NO_PARALLEL:
2207c478bd9Sstevel@tonic-gate
2217c478bd9Sstevel@tonic-gate# For stylistic checks
2227c478bd9Sstevel@tonic-gate#
2237c478bd9Sstevel@tonic-gate# Note that the X and C checks are not used at this time and may need
2247c478bd9Sstevel@tonic-gate# modification when they are actually used.
2257c478bd9Sstevel@tonic-gate#
226cdf0c1d5SmjnelsonCSTYLE=		$(ONBLD_TOOLS)/bin/cstyle
2277c478bd9Sstevel@tonic-gateCSTYLE_TAIL=
228cdf0c1d5SmjnelsonHDRCHK=		$(ONBLD_TOOLS)/bin/hdrchk
2297c478bd9Sstevel@tonic-gateHDRCHK_TAIL=
230cdf0c1d5SmjnelsonJSTYLE=		$(ONBLD_TOOLS)/bin/jstyle
2317c478bd9Sstevel@tonic-gate
2327c478bd9Sstevel@tonic-gateDOT_H_CHECK=	\
2337c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
2347c478bd9Sstevel@tonic-gate	$(HDRCHK) $< $(HDRCHK_TAIL)
2357c478bd9Sstevel@tonic-gate
2367c478bd9Sstevel@tonic-gateDOT_X_CHECK=	\
2377c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
2387c478bd9Sstevel@tonic-gate	$(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
2397c478bd9Sstevel@tonic-gate
2407c478bd9Sstevel@tonic-gateDOT_C_CHECK=	\
2417c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
2427c478bd9Sstevel@tonic-gate
2437c478bd9Sstevel@tonic-gateMANIFEST_CHECK=	\
2447c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; \
2457c478bd9Sstevel@tonic-gate	SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
2461f6eb021SLiane Praza	SVCCFG_REPOSITORY=$(SRC)/cmd/svc/seed/global.db \
2471f6eb021SLiane Praza	SVCCFG_CONFIGD_PATH=$(SRC)/cmd/svc/configd/svc.configd-native \
2487c478bd9Sstevel@tonic-gate	$(SRC)/cmd/svc/svccfg/svccfg-native validate $<
2497c478bd9Sstevel@tonic-gate
250b83ec4edSjmcp#
251b83ec4edSjmcp# IMPORTANT:: If you change any of INS.file, INS.dir, INS.rename,
252b83ec4edSjmcp# INS.link or INS.symlink here, then you must also change the
253b83ec4edSjmcp# corresponding override definitions in $CLOSED/Makefile.tonic.
254b83ec4edSjmcp# If you do not do this, then the closedbins build for the OpenSolaris
255b83ec4edSjmcp# community will break. PS, the gatekeepers will be upset too.
2567c478bd9Sstevel@tonic-gateINS.file=	$(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
2577c478bd9Sstevel@tonic-gateINS.dir=	$(INS) -s -d -m $(DIRMODE) $@
2587c478bd9Sstevel@tonic-gate# installs and renames at once
2597c478bd9Sstevel@tonic-gate#
2607c478bd9Sstevel@tonic-gateINS.rename=	$(INS.file); $(MV) $(@D)/$(<F) $@
2617c478bd9Sstevel@tonic-gate
2627c478bd9Sstevel@tonic-gate# install a link
2637c478bd9Sstevel@tonic-gateINSLINKTARGET=	$<
2647c478bd9Sstevel@tonic-gateINS.link=	$(RM) $@; $(LN) $(INSLINKTARGET) $@
265b83ec4edSjmcpINS.symlink=	$(RM) $@; $(SYMLINK) $(INSLINKTARGET) $@
266b83ec4edSjmcp
267cdf0c1d5Smjnelson#
268cdf0c1d5Smjnelson# Python bakes the mtime of the .py file into the compiled .pyc and
269cdf0c1d5Smjnelson# rebuilds if the baked-in mtime != the mtime of the source file
270cdf0c1d5Smjnelson# (rather than only if it's less than), thus when installing python
271cdf0c1d5Smjnelson# files we must make certain to not adjust the mtime of the source
272cdf0c1d5Smjnelson# (.py) file.
273cdf0c1d5Smjnelson#
274cdf0c1d5SmjnelsonINS.pyfile=	$(INS.file); $(TOUCH) -r $< $@
2757c478bd9Sstevel@tonic-gate
2767c478bd9Sstevel@tonic-gate# MACH must be set in the shell environment per uname -p on the build host
2777c478bd9Sstevel@tonic-gate# More specific architecture variables should be set in lower makefiles.
2787c478bd9Sstevel@tonic-gate#
2797c478bd9Sstevel@tonic-gate# MACH64 is derived from MACH, and BUILD64 is set to `#' for
2807c478bd9Sstevel@tonic-gate# architectures on which we do not build 64-bit versions.
2817c478bd9Sstevel@tonic-gate# (There are no such architectures at the moment.)
2827c478bd9Sstevel@tonic-gate#
2837c478bd9Sstevel@tonic-gate# Set BUILD64=# in the environment to disable 64-bit amd64
2847c478bd9Sstevel@tonic-gate# builds on i386 machines.
2857c478bd9Sstevel@tonic-gate
2867c478bd9Sstevel@tonic-gateMACH64_1=	$(MACH:sparc=sparcv9)
2877c478bd9Sstevel@tonic-gateMACH64=		$(MACH64_1:i386=amd64)
2887c478bd9Sstevel@tonic-gate
2897c478bd9Sstevel@tonic-gateMACH32_1=	$(MACH:sparc=sparcv7)
2907c478bd9Sstevel@tonic-gateMACH32=		$(MACH32_1:i386=i86)
2917c478bd9Sstevel@tonic-gate
2927c478bd9Sstevel@tonic-gatesparc_BUILD64=
2937c478bd9Sstevel@tonic-gatei386_BUILD64=
2947c478bd9Sstevel@tonic-gateBUILD64=	$($(MACH)_BUILD64)
2957c478bd9Sstevel@tonic-gate
2967c478bd9Sstevel@tonic-gate#
2977c478bd9Sstevel@tonic-gate# C compiler mode. Future compilers may change the default on us,
2987c478bd9Sstevel@tonic-gate# so force extended ANSI mode globally. Lower level makefiles can
2997c478bd9Sstevel@tonic-gate# override this by setting CCMODE.
3007c478bd9Sstevel@tonic-gate#
3017c478bd9Sstevel@tonic-gateCCMODE=			-Xa
3027c478bd9Sstevel@tonic-gateCCMODE64=		-Xa
3037c478bd9Sstevel@tonic-gate
3047c478bd9Sstevel@tonic-gate#
3057c478bd9Sstevel@tonic-gate# C compiler verbose mode. This is so we can enable it globally,
3067c478bd9Sstevel@tonic-gate# but turn it off in the lower level makefiles of things we cannot
3077c478bd9Sstevel@tonic-gate# (or aren't going to) fix.
3087c478bd9Sstevel@tonic-gate#
3097c478bd9Sstevel@tonic-gateCCVERBOSE=		-v
3107c478bd9Sstevel@tonic-gate
3117c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
3127c478bd9Sstevel@tonic-gate# from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
3137c478bd9Sstevel@tonic-gateV9ABIWARN=
3147c478bd9Sstevel@tonic-gate
3157c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
3167c478bd9Sstevel@tonic-gate# symbols (used to detect conflicts between objects that use global registers)
3177c478bd9Sstevel@tonic-gate# we disable this now for safety, and because genunix doesn't link with
3187c478bd9Sstevel@tonic-gate# this feature (the v9 default) enabled.
3197c478bd9Sstevel@tonic-gate#
3207c478bd9Sstevel@tonic-gate# REGSYM is separate since the C++ driver syntax is different.
3217c478bd9Sstevel@tonic-gateCCREGSYM=		-Wc,-Qiselect-regsym=0
3227c478bd9Sstevel@tonic-gateCCCREGSYM=		-Qoption cg -Qiselect-regsym=0
3237c478bd9Sstevel@tonic-gate
324face03d9Spetede# Prevent the removal of static symbols by the SPARC code generator (cg).
325face03d9Spetede# The x86 code generator (ube) does not remove such symbols and as such
326face03d9Spetede# using this workaround is not applicable for x86.
327face03d9Spetede#
328ac204d0dSpetedeCCSTATICSYM=		-Wc,-Qassembler-ounrefsym=0
3297c478bd9Sstevel@tonic-gate#
3307c478bd9Sstevel@tonic-gate# generate 32-bit addresses in the v9 kernel. Saves memory.
3317c478bd9Sstevel@tonic-gateCCABS32=		-Wc,-xcode=abs32
3326a3e8e86SRichard Lowe#
3336a3e8e86SRichard Lowe# generate v9 code which tolerates callers using the v7 ABI, for the sake of
3346a3e8e86SRichard Lowe# system calls.
3351a5ea532SRichard LoweCC32BITCALLERS=		-_gcc=-massume-32bit-callers
3366a3e8e86SRichard Lowe
3376a3e8e86SRichard Lowe# GCC, especially, is increasingly beginning to auto-inline functions and
3386a3e8e86SRichard Lowe# sadly does so separately not under the general -fno-inline-functions
33970413d7bSJoshua M. Clulow# Additionally, we wish to prevent optimisations which cause GCC to clone
34070413d7bSJoshua M. Clulow# functions -- in particular, these may cause unhelpful symbols to be
34170413d7bSJoshua M. Clulow# emitted instead of function names
3421a5ea532SRichard LoweCCNOAUTOINLINE= -_gcc=-fno-inline-small-functions \
34370413d7bSJoshua M. Clulow	-_gcc=-fno-inline-functions-called-once \
34470413d7bSJoshua M. Clulow	-_gcc=-fno-ipa-cp
3457c478bd9Sstevel@tonic-gate
3467c478bd9Sstevel@tonic-gate# One optimization the compiler might perform is to turn this:
3477c478bd9Sstevel@tonic-gate#	#pragma weak foo
3487c478bd9Sstevel@tonic-gate#	extern int foo;
3497c478bd9Sstevel@tonic-gate#	if (&foo)
3507c478bd9Sstevel@tonic-gate#		foo = 5;
3517c478bd9Sstevel@tonic-gate# into
3527c478bd9Sstevel@tonic-gate#	foo = 5;
3537c478bd9Sstevel@tonic-gate# Since we do some of this (foo might be referenced in common kernel code
3547c478bd9Sstevel@tonic-gate# but provided only for some cpu modules or platforms), we disable this
3557c478bd9Sstevel@tonic-gate# optimization.
356d69cdb36SRichard Lowe#
3577c478bd9Sstevel@tonic-gatesparc_CCUNBOUND	= -Wd,-xsafe=unboundsym
3587c478bd9Sstevel@tonic-gatei386_CCUNBOUND	=
3597c478bd9Sstevel@tonic-gateCCUNBOUND	= $($(MACH)_CCUNBOUND)
3607c478bd9Sstevel@tonic-gate
3617c478bd9Sstevel@tonic-gate#
3627c478bd9Sstevel@tonic-gate# compiler '-xarch' flag. This is here to centralize it and make it
3637c478bd9Sstevel@tonic-gate# overridable for testing.
3640bb07399SNick Toddsparc_XARCH=	-m32
3650bb07399SNick Toddsparcv9_XARCH=	-m64
3667c478bd9Sstevel@tonic-gatei386_XARCH=
3670bb07399SNick Toddamd64_XARCH=	-m64 -Ui386 -U__i386
3687c478bd9Sstevel@tonic-gate
3697c478bd9Sstevel@tonic-gate# assembler '-xarch' flag.  Different from compiler '-xarch' flag.
37060c80770Scraigmsparc_AS_XARCH=		-xarch=v8plus
3717c478bd9Sstevel@tonic-gatesparcv9_AS_XARCH=	-xarch=v9
3727c478bd9Sstevel@tonic-gatei386_AS_XARCH=
3737c478bd9Sstevel@tonic-gateamd64_AS_XARCH=		-xarch=amd64 -P -Ui386 -U__i386
3747c478bd9Sstevel@tonic-gate
3757c478bd9Sstevel@tonic-gate#
3767c478bd9Sstevel@tonic-gate# These flags define what we need to be 'standalone' i.e. -not- part
3777c478bd9Sstevel@tonic-gate# of the rather more cosy userland environment.  This basically means
3787c478bd9Sstevel@tonic-gate# the kernel.
3797c478bd9Sstevel@tonic-gate#
3807c478bd9Sstevel@tonic-gate# XX64	future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
3817c478bd9Sstevel@tonic-gate#
38202e56f3fSwesolowssparc_STAND_FLAGS=	-_gcc=-ffreestanding
38302e56f3fSwesolowssparcv9_STAND_FLAGS=	-_gcc=-ffreestanding
3848528fe16SRichard Lowe# Disabling MMX also disables 3DNow, disabling SSE also disables all later
3858528fe16SRichard Lowe# additions to SSE (SSE2, AVX ,etc.)
3868528fe16SRichard LoweNO_SIMD=		-_gcc=-mno-mmx -_gcc=-mno-sse
3878528fe16SRichard Lowei386_STAND_FLAGS=	-_gcc=-ffreestanding $(NO_SIMD)
3888528fe16SRichard Loweamd64_STAND_FLAGS=	-xmodel=kernel $(NO_SIMD)
3897c478bd9Sstevel@tonic-gate
3907c478bd9Sstevel@tonic-gateSAVEARGS=		-Wu,-save_args
3917c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS	+= $(SAVEARGS)
3927c478bd9Sstevel@tonic-gate
3937c478bd9Sstevel@tonic-gateSTAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
3947c478bd9Sstevel@tonic-gateSTAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
3957c478bd9Sstevel@tonic-gate
3967c478bd9Sstevel@tonic-gate#
3977c478bd9Sstevel@tonic-gate# disable the incremental linker
3987c478bd9Sstevel@tonic-gateILDOFF=			-xildoff
3997c478bd9Sstevel@tonic-gate#
4007c478bd9Sstevel@tonic-gateXDEPEND=		-xdepend
40122337b4bSrieXFFLAG=			-xF=%all
4027c478bd9Sstevel@tonic-gateXESS=			-xs
403d69cdb36SRichard LoweXSTRCONST=		-xstrconst
4047c478bd9Sstevel@tonic-gate
4057c478bd9Sstevel@tonic-gate#
4067c478bd9Sstevel@tonic-gate# turn warnings into errors (C)
4077c478bd9Sstevel@tonic-gateCERRWARN = -errtags=yes -errwarn=%all
4087c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
4097c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_STATEMENT_NOT_REACHED
4107014882cSRichard Lowe
4117014882cSRichard LoweCERRWARN += -_gcc=-Wno-missing-braces
4127014882cSRichard LoweCERRWARN += -_gcc=-Wno-sign-compare
4137014882cSRichard LoweCERRWARN += -_gcc=-Wno-unknown-pragmas
4147014882cSRichard LoweCERRWARN += -_gcc=-Wno-unused-parameter
4157014882cSRichard LoweCERRWARN += -_gcc=-Wno-missing-field-initializers
4167014882cSRichard Lowe
4177014882cSRichard Lowe# Unfortunately, this option can misfire very easily and unfixably.
4187014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-array-bounds
4197014882cSRichard Lowe
4207014882cSRichard Lowe# DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
4217014882cSRichard Lowe# -nd builds
4227014882cSRichard Lowe$(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-unused
4237014882cSRichard Lowe$(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-empty-body
4246a3e8e86SRichard Lowe
4257c478bd9Sstevel@tonic-gate#
4267c478bd9Sstevel@tonic-gate# turn warnings into errors (C++)
4277c478bd9Sstevel@tonic-gateCCERRWARN=		-xwe
4287c478bd9Sstevel@tonic-gate
4297c478bd9Sstevel@tonic-gate# C99 mode
4307c478bd9Sstevel@tonic-gateC99_ENABLE=	-xc99=%all
4317c478bd9Sstevel@tonic-gateC99_DISABLE=	-xc99=%none
4327c478bd9Sstevel@tonic-gateC99MODE=	$(C99_DISABLE)
4332df8f1d2Smike_sC99LMODE=	$(C99MODE:-xc99%=-Xc99%)
4347c478bd9Sstevel@tonic-gate
4357c478bd9Sstevel@tonic-gate# In most places, assignments to these macros should be appended with +=
4367c478bd9Sstevel@tonic-gate# (CPPFLAGS.master allows values to be prepended to CPPFLAGS).
437face03d9Spetedesparc_CFLAGS=	$(sparc_XARCH) $(CCSTATICSYM)
438ac204d0dSpetedesparcv9_CFLAGS=	$(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \
439ac204d0dSpetede		$(CCSTATICSYM)
4407c478bd9Sstevel@tonic-gatei386_CFLAGS=	$(i386_XARCH)
4417c478bd9Sstevel@tonic-gateamd64_CFLAGS=	$(amd64_XARCH)
4427c478bd9Sstevel@tonic-gate
4437c478bd9Sstevel@tonic-gatesparc_ASFLAGS=	$(sparc_AS_XARCH)
4447c478bd9Sstevel@tonic-gatesparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
4457c478bd9Sstevel@tonic-gatei386_ASFLAGS=	$(i386_AS_XARCH)
4467c478bd9Sstevel@tonic-gateamd64_ASFLAGS=	$(amd64_AS_XARCH)
4477c478bd9Sstevel@tonic-gate
4487c478bd9Sstevel@tonic-gate#
4497c478bd9Sstevel@tonic-gatesparc_COPTFLAG=		-xO3
4507c478bd9Sstevel@tonic-gatesparcv9_COPTFLAG=	-xO3
4517c478bd9Sstevel@tonic-gatei386_COPTFLAG=		-O
452662492f5Ssherrymamd64_COPTFLAG=		-xO3
4537c478bd9Sstevel@tonic-gate
4547c478bd9Sstevel@tonic-gateCOPTFLAG= $($(MACH)_COPTFLAG)
4557c478bd9Sstevel@tonic-gateCOPTFLAG64= $($(MACH64)_COPTFLAG)
4567c478bd9Sstevel@tonic-gate
4577c478bd9Sstevel@tonic-gate# When -g is used, the compiler globalizes static objects
4587c478bd9Sstevel@tonic-gate# (gives them a unique prefix). Disable that.
4597c478bd9Sstevel@tonic-gateCNOGLOBAL= -W0,-noglobal
4607c478bd9Sstevel@tonic-gate
46196ccc8cbSesaxe# Direct the Sun Studio compiler to use a static globalization prefix based on the
46296ccc8cbSesaxe# name of the module rather than something unique. Otherwise, objects
46396ccc8cbSesaxe# will not build deterministically, as subsequent compilations of identical
46496ccc8cbSesaxe# source will yeild objects that always look different.
46596ccc8cbSesaxe#
46696ccc8cbSesaxe# In the same spirit, this will also remove the date from the N_OPT stab.
46796ccc8cbSesaxeCGLOBALSTATIC= -W0,-xglobalstatic
46896ccc8cbSesaxe
46902e56f3fSwesolows# Sometimes we want all symbols and types in debugging information even
47002e56f3fSwesolows# if they aren't used.
47102e56f3fSwesolowsCALLSYMS=	-W0,-xdbggen=no%usedonly
47202e56f3fSwesolows
473ac204d0dSpetede#
474ac204d0dSpetede# Default debug format for Sun Studio 11 is dwarf, so force it to
475ac204d0dSpetede# generate stabs.
476ac204d0dSpetede#
477ac204d0dSpetedeDEBUGFORMAT=	-xdebugformat=stabs
478ac204d0dSpetede
4797c478bd9Sstevel@tonic-gate#
4807c478bd9Sstevel@tonic-gate# Flags used to build in debug mode for ctf generation.  Bugs in the Devpro
4817c478bd9Sstevel@tonic-gate# compilers currently prevent us from building with cc-emitted DWARF.
4827c478bd9Sstevel@tonic-gate#
48302e56f3fSwesolowsCTF_FLAGS_sparc	= -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
48402e56f3fSwesolowsCTF_FLAGS_i386	= -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
4852d4be7aaSRichard Lowe
4862d4be7aaSRichard LoweCTF_FLAGS_sparcv9	= $(CTF_FLAGS_sparc)
4872d4be7aaSRichard LoweCTF_FLAGS_amd64		= $(CTF_FLAGS_i386)
4882d4be7aaSRichard Lowe
4892d4be7aaSRichard Lowe# Sun Studio produces broken userland code when saving arguments.
4902d4be7aaSRichard Lowe$(__GNUC)CTF_FLAGS_amd64 += $(SAVEARGS)
4912d4be7aaSRichard Lowe
4922d4be7aaSRichard LoweCTF_FLAGS_32	= $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT)
4932d4be7aaSRichard LoweCTF_FLAGS_64	= $(CTF_FLAGS_$(MACH64)) $(DEBUGFORMAT)
4942d4be7aaSRichard LoweCTF_FLAGS	= $(CTF_FLAGS_32)
4957c478bd9Sstevel@tonic-gate
4967c478bd9Sstevel@tonic-gate#
4977c478bd9Sstevel@tonic-gate# Flags used with genoffsets
4987c478bd9Sstevel@tonic-gate#
499bf40377cSwesolowsGOFLAGS = -_noecho \
50002e56f3fSwesolows	$(CALLSYMS) \
50102e56f3fSwesolows	$(CDWARFSTR)
5027c478bd9Sstevel@tonic-gate
5037c478bd9Sstevel@tonic-gateOFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
5047c478bd9Sstevel@tonic-gate	$(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
5057c478bd9Sstevel@tonic-gate
5067c478bd9Sstevel@tonic-gateOFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
5077c478bd9Sstevel@tonic-gate	$(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
5087c478bd9Sstevel@tonic-gate
5097c478bd9Sstevel@tonic-gate#
5107c478bd9Sstevel@tonic-gate# tradeoff time for space (smaller is better)
5117c478bd9Sstevel@tonic-gate#
512ac204d0dSpetedesparc_SPACEFLAG		= -xspace -W0,-Lt
513ac204d0dSpetedesparcv9_SPACEFLAG	= -xspace -W0,-Lt
5147c478bd9Sstevel@tonic-gatei386_SPACEFLAG		= -xspace
5157c478bd9Sstevel@tonic-gateamd64_SPACEFLAG		=
5167c478bd9Sstevel@tonic-gate
5177c478bd9Sstevel@tonic-gateSPACEFLAG		= $($(MACH)_SPACEFLAG)
5187c478bd9Sstevel@tonic-gateSPACEFLAG64		= $($(MACH64)_SPACEFLAG)
5197c478bd9Sstevel@tonic-gate
520ac204d0dSpetede#
521ac204d0dSpetede# The Sun Studio 11 compiler has changed the behaviour of integer
522ac204d0dSpetede# wrap arounds and so a flag is needed to use the legacy behaviour
523ac204d0dSpetede# (without this flag panics/hangs could be exposed within the source).
524ac204d0dSpetede#
525ac204d0dSpetedesparc_IROPTFLAG		= -W2,-xwrap_int
526ac204d0dSpetedesparcv9_IROPTFLAG	= -W2,-xwrap_int
527ac204d0dSpetedei386_IROPTFLAG		=
528ac204d0dSpetedeamd64_IROPTFLAG		=
529ac204d0dSpetede
530ac204d0dSpetedeIROPTFLAG		= $($(MACH)_IROPTFLAG)
531ac204d0dSpetedeIROPTFLAG64		= $($(MACH64)_IROPTFLAG)
532ac204d0dSpetede
5337c478bd9Sstevel@tonic-gatesparc_XREGSFLAG		= -xregs=no%appl
5347c478bd9Sstevel@tonic-gatesparcv9_XREGSFLAG	= -xregs=no%appl
5357c478bd9Sstevel@tonic-gatei386_XREGSFLAG		=
5367c478bd9Sstevel@tonic-gateamd64_XREGSFLAG		=
5377c478bd9Sstevel@tonic-gate
5387c478bd9Sstevel@tonic-gateXREGSFLAG		= $($(MACH)_XREGSFLAG)
5397c478bd9Sstevel@tonic-gateXREGSFLAG64		= $($(MACH64)_XREGSFLAG)
5407c478bd9Sstevel@tonic-gate
541d69cdb36SRichard Lowe# dmake SOURCEDEBUG=yes ... enables source-level debugging information, and
542d69cdb36SRichard Lowe# avoids stripping it.
543d69cdb36SRichard LoweSOURCEDEBUG	= $(POUND_SIGN)
544d69cdb36SRichard LoweSRCDBGBLD	= $(SOURCEDEBUG:yes=)
545d69cdb36SRichard Lowe
546d69cdb36SRichard Lowe#
547d69cdb36SRichard Lowe# These variables are intended ONLY for use by developers to safely pass extra
548d69cdb36SRichard Lowe# flags to the compilers without unintentionally overriding Makefile-set
549d69cdb36SRichard Lowe# flags.  They should NEVER be set to any value in a Makefile.
550d69cdb36SRichard Lowe#
551d69cdb36SRichard Lowe# They come last in the associated FLAGS variable such that they can
552d69cdb36SRichard Lowe# explicitly override things if necessary, there are gaps in this, but it's
553d69cdb36SRichard Lowe# the best we can manage.
554d69cdb36SRichard Lowe#
555d69cdb36SRichard LoweCUSERFLAGS		=
556d69cdb36SRichard LoweCUSERFLAGS64		= $(CUSERFLAGS)
557d69cdb36SRichard LoweCCUSERFLAGS		=
558d69cdb36SRichard LoweCCUSERFLAGS64		= $(CCUSERFLAGS)
559d69cdb36SRichard Lowe
560d69cdb36SRichard LoweCSOURCEDEBUGFLAGS	=
561d69cdb36SRichard LoweCCSOURCEDEBUGFLAGS	=
562d69cdb36SRichard Lowe$(SRCDBGBLD)CSOURCEDEBUGFLAGS	= -g -xs
563d69cdb36SRichard Lowe$(SRCDBGBLD)CCSOURCEDEBUGFLAGS	= -g -xs
564d69cdb36SRichard Lowe
5657c478bd9Sstevel@tonic-gateCFLAGS=         $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
566ac204d0dSpetede		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \
567d69cdb36SRichard Lowe		$(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
568d69cdb36SRichard Lowe		$(CUSERFLAGS)
5697c478bd9Sstevel@tonic-gateCFLAGS64=       $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
570ac204d0dSpetede		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \
571d69cdb36SRichard Lowe		$(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
572d69cdb36SRichard Lowe		$(CUSERFLAGS64)
573ac204d0dSpetede#
574ac204d0dSpetede# Flags that are used to build parts of the code that are subsequently
575ac204d0dSpetede# run on the build machine (also known as the NATIVE_BUILD).
576ac204d0dSpetede#
5777c478bd9Sstevel@tonic-gateNATIVE_CFLAGS=	$(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
57896ccc8cbSesaxe		$(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \
579d69cdb36SRichard Lowe		$(IROPTFLAG) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \
580d69cdb36SRichard Lowe		$(CSOURCEDEBUGFLAGS) $(CUSERFLAGS)
5817c478bd9Sstevel@tonic-gate
5827c478bd9Sstevel@tonic-gateDTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\"	# For messaging.
5837c478bd9Sstevel@tonic-gateDTS_ERRNO=-D_TS_ERRNO
5847c478bd9Sstevel@tonic-gateCPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
585*494f7e12SKeith M Wesolowski	$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) \
586*494f7e12SKeith M Wesolowski	$(ADJUNCT_PROTO:%=-I%/usr/include)
587*494f7e12SKeith M WesolowskiCPPFLAGS.native=$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) \
588*494f7e12SKeith M Wesolowski		$(ENVCPPFLAGS4) -I$(NATIVE_ADJUNCT)/include
5897c478bd9Sstevel@tonic-gateCPPFLAGS=	$(CPPFLAGS.master)
5907c478bd9Sstevel@tonic-gateAS_CPPFLAGS=	$(CPPFLAGS.master)
5917c478bd9Sstevel@tonic-gateJAVAFLAGS=	-deprecation
5927c478bd9Sstevel@tonic-gate
5937c478bd9Sstevel@tonic-gate#
5947c478bd9Sstevel@tonic-gate# For source message catalogue
5957c478bd9Sstevel@tonic-gate#
5967c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .i .po
5977c478bd9Sstevel@tonic-gateMSGROOT= $(ROOT)/catalog
5987c478bd9Sstevel@tonic-gateMSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
5997c478bd9Sstevel@tonic-gateMSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
600d69cdb36SRichard LoweDCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
6017c478bd9Sstevel@tonic-gateDCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
6027c478bd9Sstevel@tonic-gate
6037c478bd9Sstevel@tonic-gateCLOBBERFILES += $(POFILE) $(POFILES)
6047c478bd9Sstevel@tonic-gateCOMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
6057c478bd9Sstevel@tonic-gateXGETTEXT= /usr/bin/xgettext
6067c478bd9Sstevel@tonic-gateXGETFLAGS= -c TRANSLATION_NOTE
60714843421SMatthew AhrensGNUXGETTEXT= /usr/gnu/bin/xgettext
60814843421SMatthew AhrensGNUXGETFLAGS= --add-comments=TRANSLATION_NOTE --keyword=_ \
60914843421SMatthew Ahrens	--strict --no-location --omit-header
6107c478bd9Sstevel@tonic-gateBUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
6117c478bd9Sstevel@tonic-gate	$(RM)	$@ ;\
612a778b211Scarlsonj	$(SED) "/^domain/d" < $(<F).po > $@ ;\
6137c478bd9Sstevel@tonic-gate	$(RM) $(<F).po $<.i
614a778b211Scarlsonj
6157c478bd9Sstevel@tonic-gate#
6167c478bd9Sstevel@tonic-gate# This is overwritten by local Makefile when PROG is a list.
6177c478bd9Sstevel@tonic-gate#
6187c478bd9Sstevel@tonic-gatePOFILE= $(PROG).po
6197c478bd9Sstevel@tonic-gate
6207c478bd9Sstevel@tonic-gatesparc_CCFLAGS=		-cg92 -compat=4 \
6217c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
6227c478bd9Sstevel@tonic-gate			$(CCERRWARN)
6237c478bd9Sstevel@tonic-gatesparcv9_CCFLAGS=	$(sparcv9_XARCH) -dalign -compat=5 \
6247c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
6257c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
6267c478bd9Sstevel@tonic-gate			$(CCCREGSYM) \
6277c478bd9Sstevel@tonic-gate			$(CCERRWARN)
6287c478bd9Sstevel@tonic-gatei386_CCFLAGS=		-compat=4 \
6297c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
6307c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
6317c478bd9Sstevel@tonic-gate			$(CCERRWARN)
6327c478bd9Sstevel@tonic-gateamd64_CCFLAGS=		$(amd64_XARCH) -compat=5 \
6337c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
6347c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
6357c478bd9Sstevel@tonic-gate			$(CCERRWARN)
6367c478bd9Sstevel@tonic-gate
6377c478bd9Sstevel@tonic-gatesparc_CCOPTFLAG=	-O
6387c478bd9Sstevel@tonic-gatesparcv9_CCOPTFLAG=	-O
6397c478bd9Sstevel@tonic-gatei386_CCOPTFLAG=		-O
6407c478bd9Sstevel@tonic-gateamd64_CCOPTFLAG=	-O
6417c478bd9Sstevel@tonic-gate
6427c478bd9Sstevel@tonic-gateCCOPTFLAG=	$($(MACH)_CCOPTFLAG)
6437c478bd9Sstevel@tonic-gateCCOPTFLAG64=	$($(MACH64)_CCOPTFLAG)
644d69cdb36SRichard LoweCCFLAGS=	$(CCOPTFLAG) $($(MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
645d69cdb36SRichard Lowe		$(CCUSERFLAGS)
646d69cdb36SRichard LoweCCFLAGS64=	$(CCOPTFLAG64) $($(MACH64)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
647d69cdb36SRichard Lowe		$(CCUSERFLAGS64)
64824da5b34Srie
6494c06356bSdh#
6504c06356bSdh#
6514c06356bSdh#
652d69cdb36SRichard LoweELFWRAP_FLAGS	=
6534c06356bSdhELFWRAP_FLAGS64	=	-64
6544c06356bSdh
65524da5b34Srie#
65624da5b34Srie# Various mapfiles that are used throughout the build, and delivered to
65724da5b34Srie# /usr/lib/ld.
6587c478bd9Sstevel@tonic-gate#
659cd3e9333SAli BahramiMAPFILE.NED_i386 =	$(SRC)/common/mapfiles/common/map.noexdata
66024da5b34SrieMAPFILE.NED_sparc =
66124da5b34SrieMAPFILE.NED =		$(MAPFILE.NED_$(MACH))
662cd3e9333SAli BahramiMAPFILE.PGA =		$(SRC)/common/mapfiles/common/map.pagealign
66324da5b34SrieMAPFILE.NES =		$(SRC)/common/mapfiles/common/map.noexstk
66424da5b34SrieMAPFILE.FLT =		$(SRC)/common/mapfiles/common/map.filter
665df4628cbSrieMAPFILE.LEX =		$(SRC)/common/mapfiles/common/map.lex.yy
66624da5b34Srie
6677c478bd9Sstevel@tonic-gate#
66824da5b34Srie# Generated mapfiles that are compiler specific, and used throughout the
66924da5b34Srie# build.  These mapfiles are not delivered in /usr/lib/ld.
6707c478bd9Sstevel@tonic-gate#
67124da5b34SrieMAPFILE.NGB_sparc=	$(SRC)/common/mapfiles/gen/sparc_cc_map.noexeglobs
67224da5b34Srie$(__GNUC64)MAPFILE.NGB_sparc= \
67324da5b34Srie			$(SRC)/common/mapfiles/gen/sparc_gcc_map.noexeglobs
67424da5b34SrieMAPFILE.NGB_sparcv9=	$(SRC)/common/mapfiles/gen/sparcv9_cc_map.noexeglobs
67524da5b34Srie$(__GNUC64)MAPFILE.NGB_sparcv9= \
67624da5b34Srie			$(SRC)/common/mapfiles/gen/sparcv9_gcc_map.noexeglobs
67724da5b34SrieMAPFILE.NGB_i386=	$(SRC)/common/mapfiles/gen/i386_cc_map.noexeglobs
67824da5b34Srie$(__GNUC64)MAPFILE.NGB_i386= \
67924da5b34Srie			$(SRC)/common/mapfiles/gen/i386_gcc_map.noexeglobs
68024da5b34SrieMAPFILE.NGB_amd64=	$(SRC)/common/mapfiles/gen/amd64_cc_map.noexeglobs
68124da5b34Srie$(__GNUC64)MAPFILE.NGB_amd64= \
68224da5b34Srie			$(SRC)/common/mapfiles/gen/amd64_gcc_map.noexeglobs
68324da5b34SrieMAPFILE.NGB =		$(MAPFILE.NGB_$(MACH))
68424da5b34Srie
68524da5b34Srie#
68624da5b34Srie# A generic interface mapfile name, used by various dynamic objects to define
68724da5b34Srie# the interfaces and interposers the object must export.
68824da5b34Srie#
68924da5b34SrieMAPFILE.INT =		mapfile-intf
69024da5b34Srie
691d69cdb36SRichard Lowe#
6927c478bd9Sstevel@tonic-gate# LDLIBS32 can be set in the environment to override the following assignment.
6937c478bd9Sstevel@tonic-gate# LDLIBS64 can be set to override the assignment made in Makefile.master.64.
6947c478bd9Sstevel@tonic-gate# These environment settings make sure that no libraries are searched outside
6957c478bd9Sstevel@tonic-gate# of the local workspace proto area:
6967c478bd9Sstevel@tonic-gate#	LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
6977c478bd9Sstevel@tonic-gate#	LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
6987c478bd9Sstevel@tonic-gate#
6997c478bd9Sstevel@tonic-gateLDLIBS32 =	$(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
700*494f7e12SKeith M WesolowskiLDLIBS32 +=	$(ADJUNCT_PROTO:%=-L%/usr/lib -L%/lib)
7017c478bd9Sstevel@tonic-gateLDLIBS.cmd = 	$(LDLIBS32)
7027c478bd9Sstevel@tonic-gateLDLIBS.lib =	$(LDLIBS32)
7037c478bd9Sstevel@tonic-gate#
7047c478bd9Sstevel@tonic-gate# Define compilation macros.
7057c478bd9Sstevel@tonic-gate#
7067c478bd9Sstevel@tonic-gateCOMPILE.c=	$(CC) $(CFLAGS) $(CPPFLAGS) -c
7077c478bd9Sstevel@tonic-gateCOMPILE64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) -c
7087c478bd9Sstevel@tonic-gateCOMPILE.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) -c
7097c478bd9Sstevel@tonic-gateCOMPILE64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
7107c478bd9Sstevel@tonic-gateCOMPILE.s=	$(AS) $(ASFLAGS) $(AS_CPPFLAGS)
7117c478bd9Sstevel@tonic-gateCOMPILE64.s=	$(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
7127c478bd9Sstevel@tonic-gateCOMPILE.d=	$(DTRACE) -G -32
7137c478bd9Sstevel@tonic-gateCOMPILE64.d=	$(DTRACE) -G -64
7144c06356bSdhCOMPILE.b=	$(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
7154c06356bSdhCOMPILE64.b=	$(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
7167c478bd9Sstevel@tonic-gate
7177c478bd9Sstevel@tonic-gateCLASSPATH=	.
7187c478bd9Sstevel@tonic-gateCOMPILE.java=	$(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
7197c478bd9Sstevel@tonic-gate
7207c478bd9Sstevel@tonic-gate#
7217c478bd9Sstevel@tonic-gate# Link time macros
7227c478bd9Sstevel@tonic-gate#
7237c478bd9Sstevel@tonic-gateCCNEEDED		= -lC
7246a3e8e86SRichard LoweCCEXTNEEDED		= -lCrun -lCstd
725*494f7e12SKeith M Wesolowski$(__GNUC)CCNEEDED	= -L$(GCCLIBDIR) -lstdc++ -lgcc_s
7266a3e8e86SRichard Lowe$(__GNUC)CCEXTNEEDED	= $(CCNEEDED)
7277c478bd9Sstevel@tonic-gate
7287c478bd9Sstevel@tonic-gateLINK.c=		$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
7297c478bd9Sstevel@tonic-gateLINK64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
7307c478bd9Sstevel@tonic-gateNORUNPATH=	-norunpath -nolib
7317c478bd9Sstevel@tonic-gateLINK.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
7327c478bd9Sstevel@tonic-gate		$(LDFLAGS) $(CCNEEDED)
7337c478bd9Sstevel@tonic-gateLINK64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
7347c478bd9Sstevel@tonic-gate		$(LDFLAGS) $(CCNEEDED)
7357c478bd9Sstevel@tonic-gate
7367c478bd9Sstevel@tonic-gate#
7377c478bd9Sstevel@tonic-gate# lint macros
7387c478bd9Sstevel@tonic-gate#
7397c478bd9Sstevel@tonic-gate# Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
7407c478bd9Sstevel@tonic-gate# ON is built with a version of lint that has the fix for 4484186.
7417c478bd9Sstevel@tonic-gate#
7427c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS =	-errtags=yes -s
7437c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PTRDIFF_OVERFLOW
7447c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_NARROW_CONV
7457c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-U__PRAGMA_REDEFINE_EXTNAME
7467c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	$(C99LMODE)
7477c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-errsecurity=$(SECLEVEL)
7487c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_SEC_CREAT_WITHOUT_EXCL
7497c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_SEC_FORBIDDEN_WARN_CREAT
7507c478bd9Sstevel@tonic-gate# XX64 -- really only needed for amd64 lint
7517c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_INT_TO_SMALL_INT
7527c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_CONST_TO_SMALL_INT
7537c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_TO_SMALL_INT
7547c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_TO_PTR_FROM_INT
7557c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_COMP_INT_WITH_LARGE_INT
7567c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_INTEGRAL_CONST_EXP_EXPECTED
7577c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PASS_INT_TO_SMALL_INT
7587c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PTR_CONV_LOSES_BITS
7597c478bd9Sstevel@tonic-gate
76047842382SJames Carlson# This forces lint to pick up note.h and sys/note.h from Devpro rather than
76147842382SJames Carlson# from the proto area.  The note.h that ON delivers would disable NOTE().
76247842382SJames CarlsonONLY_LINT_DEFS =	-I$(SPRO_VROOT)/prod/include/lint
76347842382SJames Carlson
7647c478bd9Sstevel@tonic-gateSECLEVEL=	core
76547842382SJames CarlsonLINT.c=		$(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS) $(CPPFLAGS) \
76647842382SJames Carlson		$(ALWAYS_LINT_DEFS)
76747842382SJames CarlsonLINT64.c=	$(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS64) $(CPPFLAGS) \
76847842382SJames Carlson		$(ALWAYS_LINT_DEFS)
7697c478bd9Sstevel@tonic-gateLINT.s=		$(LINT.c)
7707c478bd9Sstevel@tonic-gate
7717c478bd9Sstevel@tonic-gate# For some future builds, NATIVE_MACH and MACH might be different.
7727c478bd9Sstevel@tonic-gate# Therefore, NATIVE_MACH needs to be redefined in the
7737c478bd9Sstevel@tonic-gate# environment as `uname -p` to override this macro.
7747c478bd9Sstevel@tonic-gate#
7757c478bd9Sstevel@tonic-gate# For now at least, we cross-compile amd64 on i386 machines.
7767c478bd9Sstevel@tonic-gateNATIVE_MACH=	$(MACH:amd64=i386)
7777c478bd9Sstevel@tonic-gate
7787c478bd9Sstevel@tonic-gate# Define native compilation macros
7797c478bd9Sstevel@tonic-gate#
7807c478bd9Sstevel@tonic-gate
7817c478bd9Sstevel@tonic-gate# Base directory where compilers are loaded.
7827c478bd9Sstevel@tonic-gate# Defined here so it can be overridden by developer.
7837c478bd9Sstevel@tonic-gate#
7847c478bd9Sstevel@tonic-gateSPRO_ROOT=		$(BUILD_TOOLS)/SUNWspro
7850bb07399SNick ToddSPRO_VROOT=		$(SPRO_ROOT)/SS12
7867c478bd9Sstevel@tonic-gateGNU_ROOT=		$(SFW_ROOT)
7877c478bd9Sstevel@tonic-gate
7882418f65fSSurya Prakki# Till SS12u1 formally becomes the NV CBE, LINT is hard
7892418f65fSSurya Prakki# coded to be picked up from the $SPRO_ROOT/sunstudio12.1/
7902418f65fSSurya Prakki# location. Impacted variables are sparc_LINT, sparcv9_LINT,
7912418f65fSSurya Prakki# i386_LINT, amd64_LINT.
7922418f65fSSurya Prakki# Reset them when SS12u1 is rolled out.
7932418f65fSSurya Prakki#
7942418f65fSSurya Prakki
7957c478bd9Sstevel@tonic-gate# Specify platform compiler versions for languages
7967c478bd9Sstevel@tonic-gate# that we use (currently only c and c++).
7977c478bd9Sstevel@tonic-gate#
798bf40377cSwesolowssparc_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
799bf40377cSwesolows$(__GNUC)sparc_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
800bf40377cSwesolowssparc_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
801bf40377cSwesolows$(__GNUC)sparc_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
8027c478bd9Sstevel@tonic-gatesparc_CPP=		/usr/ccs/lib/cpp
8037c478bd9Sstevel@tonic-gatesparc_AS=		/usr/ccs/bin/as -xregsym=no
8047c478bd9Sstevel@tonic-gatesparc_LD=		/usr/ccs/bin/ld
8052418f65fSSurya Prakkisparc_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
8067c478bd9Sstevel@tonic-gate
807bf40377cSwesolowssparcv9_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
808bf40377cSwesolows$(__GNUC64)sparcv9_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
809bf40377cSwesolowssparcv9_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
810bf40377cSwesolows$(__GNUC64)sparcv9_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
8117c478bd9Sstevel@tonic-gatesparcv9_CPP=		/usr/ccs/lib/cpp
8127c478bd9Sstevel@tonic-gatesparcv9_AS=		/usr/ccs/bin/as -xregsym=no
8137c478bd9Sstevel@tonic-gatesparcv9_LD=		/usr/ccs/bin/ld
8142418f65fSSurya Prakkisparcv9_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
8157c478bd9Sstevel@tonic-gate
8167c478bd9Sstevel@tonic-gatei386_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
8177c478bd9Sstevel@tonic-gate$(__GNUC)i386_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
8187c478bd9Sstevel@tonic-gatei386_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
8197c478bd9Sstevel@tonic-gate$(__GNUC)i386_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
8207c478bd9Sstevel@tonic-gatei386_CPP=		/usr/ccs/lib/cpp
8217c478bd9Sstevel@tonic-gatei386_AS=		/usr/ccs/bin/as
8227c478bd9Sstevel@tonic-gate$(__GNUC)i386_AS=	$(ONBLD_TOOLS)/bin/$(MACH)/aw
8237c478bd9Sstevel@tonic-gatei386_LD=		/usr/ccs/bin/ld
8242418f65fSSurya Prakkii386_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
8257c478bd9Sstevel@tonic-gate
8267c478bd9Sstevel@tonic-gateamd64_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
8277c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
8287c478bd9Sstevel@tonic-gateamd64_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
8297c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
8307c478bd9Sstevel@tonic-gateamd64_CPP=		/usr/ccs/lib/cpp
8317c478bd9Sstevel@tonic-gateamd64_AS=		$(ONBLD_TOOLS)/bin/$(MACH)/aw
8327c478bd9Sstevel@tonic-gateamd64_LD=		/usr/ccs/bin/ld
8332418f65fSSurya Prakkiamd64_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
8347c478bd9Sstevel@tonic-gate
8357c478bd9Sstevel@tonic-gateNATIVECC=		$($(NATIVE_MACH)_CC)
8367c478bd9Sstevel@tonic-gateNATIVECCC=		$($(NATIVE_MACH)_CCC)
8377c478bd9Sstevel@tonic-gateNATIVECPP=		$($(NATIVE_MACH)_CPP)
8387c478bd9Sstevel@tonic-gateNATIVEAS=		$($(NATIVE_MACH)_AS)
8397c478bd9Sstevel@tonic-gateNATIVELD=		$($(NATIVE_MACH)_LD)
8407c478bd9Sstevel@tonic-gateNATIVELINT=		$($(NATIVE_MACH)_LINT)
8417c478bd9Sstevel@tonic-gate
8427c478bd9Sstevel@tonic-gate#
8437c478bd9Sstevel@tonic-gate# Makefile.master.64 overrides these settings
8447c478bd9Sstevel@tonic-gate#
8457c478bd9Sstevel@tonic-gateCC=			$(NATIVECC)
8467c478bd9Sstevel@tonic-gateCCC=			$(NATIVECCC)
8477c478bd9Sstevel@tonic-gateCPP=			$(NATIVECPP)
8487c478bd9Sstevel@tonic-gateAS=			$(NATIVEAS)
8497c478bd9Sstevel@tonic-gateLD=			$(NATIVELD)
8507c478bd9Sstevel@tonic-gateLINT=			$(NATIVELINT)
8517c478bd9Sstevel@tonic-gate
85202e56f3fSwesolows# The real compilers used for this build
85302e56f3fSwesolowsCW_CC_CMD=		$(CC) -_compiler
85402e56f3fSwesolowsCW_CCC_CMD=		$(CCC) -_compiler
85502e56f3fSwesolowsREAL_CC=		$(CW_CC_CMD:sh)
85602e56f3fSwesolowsREAL_CCC=		$(CW_CCC_CMD:sh)
85702e56f3fSwesolows
8587c478bd9Sstevel@tonic-gate# Pass -Y flag to cpp (method of which is release-dependent)
8597c478bd9Sstevel@tonic-gateCCYFLAG=		-Y I,
8607c478bd9Sstevel@tonic-gate
8617c478bd9Sstevel@tonic-gateBDIRECT=	-Bdirect
8627c478bd9Sstevel@tonic-gateBDYNAMIC=	-Bdynamic
8637c478bd9Sstevel@tonic-gateBLOCAL=		-Blocal
86424da5b34SrieBNODIRECT=	-Bnodirect
8657c478bd9Sstevel@tonic-gateBREDUCE=	-Breduce
8667c478bd9Sstevel@tonic-gateBSTATIC=	-Bstatic
8677c478bd9Sstevel@tonic-gate
8687c478bd9Sstevel@tonic-gateZDEFS=		-zdefs
86924da5b34SrieZDIRECT=	-zdirect
8707c478bd9Sstevel@tonic-gateZIGNORE=	-zignore
8717c478bd9Sstevel@tonic-gateZINITFIRST=	-zinitfirst
8727c478bd9Sstevel@tonic-gateZINTERPOSE=	-zinterpose
8737c478bd9Sstevel@tonic-gateZLAZYLOAD=	-zlazyload
8747c478bd9Sstevel@tonic-gateZLOADFLTR=	-zloadfltr
8757c478bd9Sstevel@tonic-gateZMULDEFS=	-zmuldefs
8767c478bd9Sstevel@tonic-gateZNODEFAULTLIB=	-znodefaultlib
8777c478bd9Sstevel@tonic-gateZNODEFS=	-znodefs
8787c478bd9Sstevel@tonic-gateZNODELETE=	-znodelete
8797c478bd9Sstevel@tonic-gateZNODLOPEN=	-znodlopen
8807c478bd9Sstevel@tonic-gateZNODUMP=	-znodump
8817c478bd9Sstevel@tonic-gateZNOLAZYLOAD=	-znolazyload
8822a8d6ebaSRod EvansZNOLDYNSYM=	-znoldynsym
88302e56f3fSwesolowsZNORELOC=	-znoreloc
8847c478bd9Sstevel@tonic-gateZNOVERSION=	-znoversion
88522337b4bSrieZRECORD=	-zrecord
8867c478bd9Sstevel@tonic-gateZREDLOCSYM=	-zredlocsym
8877c478bd9Sstevel@tonic-gateZTEXT=		-ztext
88824da5b34SrieZVERBOSE=	-zverbose
8897c478bd9Sstevel@tonic-gate
8907c478bd9Sstevel@tonic-gateGSHARED=	-G
8917c478bd9Sstevel@tonic-gateCCMT=		-mt
8927c478bd9Sstevel@tonic-gate
8937c478bd9Sstevel@tonic-gate# Handle different PIC models on different ISAs
8947c478bd9Sstevel@tonic-gate# (May be overridden by lower-level Makefiles)
8957c478bd9Sstevel@tonic-gate
8967c478bd9Sstevel@tonic-gatesparc_C_PICFLAGS =	-K pic
8977c478bd9Sstevel@tonic-gatesparcv9_C_PICFLAGS =	-K pic
8987c478bd9Sstevel@tonic-gatei386_C_PICFLAGS =	-K pic
8997c478bd9Sstevel@tonic-gateamd64_C_PICFLAGS =	-K pic
9007c478bd9Sstevel@tonic-gateC_PICFLAGS =		$($(MACH)_C_PICFLAGS)
9017c478bd9Sstevel@tonic-gateC_PICFLAGS64 =		$($(MACH64)_C_PICFLAGS)
9027c478bd9Sstevel@tonic-gate
9037c478bd9Sstevel@tonic-gatesparc_C_BIGPICFLAGS =	-K PIC
9047c478bd9Sstevel@tonic-gatesparcv9_C_BIGPICFLAGS =	-K PIC
9057c478bd9Sstevel@tonic-gatei386_C_BIGPICFLAGS =	-K PIC
9067c478bd9Sstevel@tonic-gateamd64_C_BIGPICFLAGS =	-K PIC
9077c478bd9Sstevel@tonic-gateC_BIGPICFLAGS =		$($(MACH)_C_BIGPICFLAGS)
9087c478bd9Sstevel@tonic-gateC_BIGPICFLAGS64 =	$($(MACH64)_C_BIGPICFLAGS)
9097c478bd9Sstevel@tonic-gate
9107c478bd9Sstevel@tonic-gate# CC requires there to be no space between '-K' and 'pic' or 'PIC'.
9117c478bd9Sstevel@tonic-gatesparc_CC_PICFLAGS =	-Kpic
9127c478bd9Sstevel@tonic-gatesparcv9_CC_PICFLAGS =	-KPIC
9137c478bd9Sstevel@tonic-gatei386_CC_PICFLAGS = 	-Kpic
9147c478bd9Sstevel@tonic-gateamd64_CC_PICFLAGS = 	-Kpic
9157c478bd9Sstevel@tonic-gateCC_PICFLAGS =		$($(MACH)_CC_PICFLAGS)
9167c478bd9Sstevel@tonic-gateCC_PICFLAGS64 =		$($(MACH64)_CC_PICFLAGS)
9177c478bd9Sstevel@tonic-gate
9187c478bd9Sstevel@tonic-gateAS_PICFLAGS=		$(C_PICFLAGS)
9197c478bd9Sstevel@tonic-gateAS_BIGPICFLAGS=		$(C_BIGPICFLAGS)
9207c478bd9Sstevel@tonic-gate
9217c478bd9Sstevel@tonic-gate#
9227c478bd9Sstevel@tonic-gate# Default label for CTF sections
9237c478bd9Sstevel@tonic-gate#
9247c478bd9Sstevel@tonic-gateCTFCVTFLAGS=		-i -L VERSION
925d69cdb36SRichard Lowe$(SRCDBGBLD)CTFCVTFLAGS 	+= -g
9267c478bd9Sstevel@tonic-gate
9277c478bd9Sstevel@tonic-gate#
928d69cdb36SRichard Lowe# Override to pass module-specific flags to ctfmerge.  Currently used only by
929d69cdb36SRichard Lowe# krtld to turn on fuzzy matching, and source-level debugging to inhibit
930d69cdb36SRichard Lowe# stripping.
9317c478bd9Sstevel@tonic-gate#
9327c478bd9Sstevel@tonic-gateCTFMRGFLAGS=
933d69cdb36SRichard Lowe$(SRCDBGBLD)CTFMRGFLAGS 	+= -g
934d69cdb36SRichard Lowe
9357c478bd9Sstevel@tonic-gate
9367c478bd9Sstevel@tonic-gateCTFCONVERT_O		= $(CTFCONVERT) $(CTFCVTFLAGS) $@
9377c478bd9Sstevel@tonic-gate
9387c478bd9Sstevel@tonic-gateELFSIGN_O=	$(TRUE)
9397c478bd9Sstevel@tonic-gateELFSIGN_CRYPTO=	$(ELFSIGN_O)
9407c478bd9Sstevel@tonic-gateELFSIGN_OBJECT=	$(ELFSIGN_O)
9417c478bd9Sstevel@tonic-gate
9427c478bd9Sstevel@tonic-gate# Rules (normally from make.rules) and macros which are used for post
9437c478bd9Sstevel@tonic-gate# processing files. Normally, these do stripping of the comment section
9447c478bd9Sstevel@tonic-gate# automatically.
9457c478bd9Sstevel@tonic-gate#    RELEASE_CM:	Should be editted to reflect the release.
9467c478bd9Sstevel@tonic-gate#    POST_PROCESS_O:	Post-processing for `.o' files.
9477c478bd9Sstevel@tonic-gate#    POST_PROCESS_A:	Post-processing for `.a' files (currently null).
9487c478bd9Sstevel@tonic-gate#    POST_PROCESS_SO:	Post-processing for `.so' files.
9497c478bd9Sstevel@tonic-gate#    POST_PROCESS:	Post-processing for executable files (no suffix).
9507c478bd9Sstevel@tonic-gate# Note that these macros are not completely generalized as they are to be
9517c478bd9Sstevel@tonic-gate# used with the file name to be processed following.
9527c478bd9Sstevel@tonic-gate#
9537c478bd9Sstevel@tonic-gate# It is left as an exercise to Release Engineering to embellish the generation
9547c478bd9Sstevel@tonic-gate# of the release comment string.
9557c478bd9Sstevel@tonic-gate#
9567c478bd9Sstevel@tonic-gate#	If this is a standard development build:
9577c478bd9Sstevel@tonic-gate#		compress the comment section (mcs -c)
9587c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
9597c478bd9Sstevel@tonic-gate#		add the development specific comment (mcs -a $(DEV_CM))
9607c478bd9Sstevel@tonic-gate#
9617c478bd9Sstevel@tonic-gate#	If this is an installation build:
9627c478bd9Sstevel@tonic-gate#		delete the comment section (mcs -d)
9637c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
9647c478bd9Sstevel@tonic-gate#		add the development specific comment (mcs -a $(DEV_CM))
9657c478bd9Sstevel@tonic-gate#
9667c478bd9Sstevel@tonic-gate#	If this is an release build:
9677c478bd9Sstevel@tonic-gate#		delete the comment section (mcs -d)
9687c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
9697c478bd9Sstevel@tonic-gate#
9707c478bd9Sstevel@tonic-gate# The following list of macros are used in the definition of RELEASE_CM
9717c478bd9Sstevel@tonic-gate# which is used to label all binaries in the build:
9727c478bd9Sstevel@tonic-gate#
9737c478bd9Sstevel@tonic-gate# 	RELEASE		Specific release of the build, eg: 5.2
9742032ea7bSmeem#	RELEASE_MAJOR	Major version number part of $(RELEASE)
9752032ea7bSmeem#	RELEASE_MINOR	Minor version number part of $(RELEASE)
9767c478bd9Sstevel@tonic-gate#	VERSION		Version of the build (alpha, beta, Generic)
9777c478bd9Sstevel@tonic-gate#	PATCHID		If this is a patch this value should contain
9787c478bd9Sstevel@tonic-gate#			the patchid value (eg: "Generic 100832-01"), otherwise
9797c478bd9Sstevel@tonic-gate#			it will be set to $(VERSION)
9807c478bd9Sstevel@tonic-gate#	RELEASE_DATE	Date of the Release Build
9817c478bd9Sstevel@tonic-gate#	PATCH_DATE	Date the patch was created, if this is blank it
9827c478bd9Sstevel@tonic-gate#			will default to the RELEASE_DATE
9837c478bd9Sstevel@tonic-gate#
9842032ea7bSmeemRELEASE_MAJOR=	5
9852032ea7bSmeemRELEASE_MINOR=	11
9862032ea7bSmeemRELEASE=	$(RELEASE_MAJOR).$(RELEASE_MINOR)
9877c478bd9Sstevel@tonic-gateVERSION=	SunOS Development
9887c478bd9Sstevel@tonic-gatePATCHID=	$(VERSION)
98948bc00d6SjmcpRELEASE_DATE=	release date not set
9907c478bd9Sstevel@tonic-gatePATCH_DATE=	$(RELEASE_DATE)
9917c478bd9Sstevel@tonic-gateRELEASE_CM=	"@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
99248bc00d6SjmcpDEV_CM=		"@($(POUND_SIGN))SunOS Internal Development: non-nightly build"
9937c478bd9Sstevel@tonic-gate
9947c478bd9Sstevel@tonic-gatePROCESS_COMMENT=		   @?${MCS} -c -a $(RELEASE_CM) -a $(DEV_CM)
9957c478bd9Sstevel@tonic-gate$(STRIP_COMMENTS)PROCESS_COMMENT=  @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
9967c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PROCESS_COMMENT=   @?${MCS} -d -a $(RELEASE_CM)
9977c478bd9Sstevel@tonic-gate
9987c478bd9Sstevel@tonic-gateSTRIP_STABS=			   :
9997c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)STRIP_STABS=	   $(STRIP) -x $@
1000d69cdb36SRichard Lowe$(SRCDBGBLD)STRIP_STABS=	   :
10017c478bd9Sstevel@tonic-gate
10027c478bd9Sstevel@tonic-gatePOST_PROCESS_O=		$(PROCESS_COMMENT) $@
10037c478bd9Sstevel@tonic-gatePOST_PROCESS_A=
10047c478bd9Sstevel@tonic-gatePOST_PROCESS_SO=	$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
10057c478bd9Sstevel@tonic-gate			$(ELFSIGN_OBJECT)
10068ad60789SriePOST_PROCESS=		$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
10078ad60789Srie			$(ELFSIGN_OBJECT)
10087c478bd9Sstevel@tonic-gate
1009b31b5de1SJerry Gilliam#
1010b31b5de1SJerry Gilliam# chk4ubin is a tool that inspects a module for a symbol table
1011b31b5de1SJerry Gilliam# ELF section size which can trigger an OBP bug on older platforms.
1012b31b5de1SJerry Gilliam# This problem affects only specific sun4u bootable modules.
1013b31b5de1SJerry Gilliam#
1014b31b5de1SJerry GilliamCHK4UBIN=	$(ONBLD_TOOLS)/bin/$(MACH)/chk4ubin
1015b31b5de1SJerry GilliamCHK4UBINFLAGS=
1016b31b5de1SJerry GilliamCHK4UBINARY=	$(CHK4UBIN) $(CHK4UBINFLAGS) $@
1017b31b5de1SJerry Gilliam
10187c478bd9Sstevel@tonic-gate#
10197c478bd9Sstevel@tonic-gate# PKGARCHIVE specifies the default location where packages should be
10207c478bd9Sstevel@tonic-gate# placed if built.
10217c478bd9Sstevel@tonic-gate#
10227c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PKGARCHIVESUFFIX=	-nd
10237c478bd9Sstevel@tonic-gatePKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
10247c478bd9Sstevel@tonic-gate
1025ead1f93eSLiane Praza#
1026ead1f93eSLiane Praza# The repositories will be created with these publisher settings.  To
1027ead1f93eSLiane Praza# update an image to the resulting repositories, this must match the
1028ead1f93eSLiane Praza# publisher name provided to "pkg set-publisher."
1029ead1f93eSLiane Praza#
1030ead1f93eSLiane PrazaPKGPUBLISHER_REDIST=	on-nightly
1031ead1f93eSLiane PrazaPKGPUBLISHER_NONREDIST=	on-extra
1032ead1f93eSLiane Praza
10337c478bd9Sstevel@tonic-gate#	Default build rules which perform comment section post-processing.
10347c478bd9Sstevel@tonic-gate#
10357c478bd9Sstevel@tonic-gate.c:
10367c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $< $(LDLIBS)
10377c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10387c478bd9Sstevel@tonic-gate.c.o:
10397c478bd9Sstevel@tonic-gate	$(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
10407c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10417c478bd9Sstevel@tonic-gate.c.a:
10427c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $% $<
10437c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
10447c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
10457c478bd9Sstevel@tonic-gate	$(RM) $%
10467c478bd9Sstevel@tonic-gate.s.o:
10477c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
10487c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10497c478bd9Sstevel@tonic-gate.s.a:
10507c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $% $<
10517c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
10527c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
10537c478bd9Sstevel@tonic-gate	$(RM) $%
10547c478bd9Sstevel@tonic-gate.cc:
10557c478bd9Sstevel@tonic-gate	$(LINK.cc) -o $@ $< $(LDLIBS)
10567c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10577c478bd9Sstevel@tonic-gate.cc.o:
10587c478bd9Sstevel@tonic-gate	$(COMPILE.cc) $(OUTPUT_OPTION) $<
10597c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10607c478bd9Sstevel@tonic-gate.cc.a:
10617c478bd9Sstevel@tonic-gate	$(COMPILE.cc) -o $% $<
10627c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
10637c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
10647c478bd9Sstevel@tonic-gate	$(RM) $%
10657c478bd9Sstevel@tonic-gate.y:
10667c478bd9Sstevel@tonic-gate	$(YACC.y) $<
10677c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ y.tab.c $(LDLIBS)
10687c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10697c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
10707c478bd9Sstevel@tonic-gate.y.o:
10717c478bd9Sstevel@tonic-gate	$(YACC.y) $<
10727c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
10737c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10747c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
10757c478bd9Sstevel@tonic-gate.l:
10767c478bd9Sstevel@tonic-gate	$(RM) $*.c
10777c478bd9Sstevel@tonic-gate	$(LEX.l) $< > $*.c
10787c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $*.c -ll $(LDLIBS)
10797c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
10807c478bd9Sstevel@tonic-gate	$(RM) $*.c
10817c478bd9Sstevel@tonic-gate.l.o:
10827c478bd9Sstevel@tonic-gate	$(RM) $*.c
10837c478bd9Sstevel@tonic-gate	$(LEX.l) $< > $*.c
10847c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
10857c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
10867c478bd9Sstevel@tonic-gate	$(RM) $*.c
10877c478bd9Sstevel@tonic-gate
10884c06356bSdh.bin.o:
10894c06356bSdh	$(COMPILE.b) -o $@ $<
10904c06356bSdh	$(POST_PROCESS_O)
10914c06356bSdh
10927c478bd9Sstevel@tonic-gate.java.class:
10937c478bd9Sstevel@tonic-gate	$(COMPILE.java) $<
10947c478bd9Sstevel@tonic-gate
1095a778b211Scarlsonj# Bourne and Korn shell script message catalog build rules.
1096a778b211Scarlsonj# We extract all gettext strings with sed(1) (being careful to permit
1097a778b211Scarlsonj# multiple gettext strings on the same line), weed out the dups, and
1098a778b211Scarlsonj# build the catalogue with awk(1).
10997c478bd9Sstevel@tonic-gate
1100a778b211Scarlsonj.sh.po .ksh.po:
1101a778b211Scarlsonj	$(SED) -n -e ":a" 				\
11027c478bd9Sstevel@tonic-gate		  -e "h" 					\
11037c478bd9Sstevel@tonic-gate		  -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p"	\
11047c478bd9Sstevel@tonic-gate		  -e "x"					\
11057c478bd9Sstevel@tonic-gate		  -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/"	\
11067c478bd9Sstevel@tonic-gate		  -e "t a"					\
11077c478bd9Sstevel@tonic-gate	       $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
11087c478bd9Sstevel@tonic-gate
1109a778b211Scarlsonj#
1110a778b211Scarlsonj# Python and Perl executable and message catalog build rules.
1111a778b211Scarlsonj#
1112cdf0c1d5Smjnelson.SUFFIXES: .pl .pm .py .pyc
1113a778b211Scarlsonj
1114a778b211Scarlsonj.pl:
1115a778b211Scarlsonj	$(RM) $@;
1116a778b211Scarlsonj	$(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@;
1117a778b211Scarlsonj	$(CHMOD) +x $@
1118a778b211Scarlsonj
1119a778b211Scarlsonj.py:
1120a778b211Scarlsonj	$(RM) $@; $(CAT) $< > $@; $(CHMOD) +x $@
1121a778b211Scarlsonj
1122cdf0c1d5Smjnelson.py.pyc:
1123cdf0c1d5Smjnelson	$(RM) $@
1124cdf0c1d5Smjnelson	$(PYTHON) -mpy_compile $<
1125cdf0c1d5Smjnelson	@[ $(<)c = $@ ] || $(MV) $(<)c $@
1126cdf0c1d5Smjnelson
112714843421SMatthew Ahrens.py.po:
112814843421SMatthew Ahrens	$(GNUXGETTEXT) $(GNUXGETFLAGS) -d $(<F:%.py=%) $< ;
112914843421SMatthew Ahrens
1130a778b211Scarlsonj.pl.po .pm.po:
1131a778b211Scarlsonj	$(XGETTEXT) $(XGETFLAGS) -d $(<F) $< ;
1132a778b211Scarlsonj	$(RM)	$@ ;
1133a778b211Scarlsonj	$(SED) "/^domain/d" < $(<F).po > $@ ;
1134a778b211Scarlsonj	$(RM) $(<F).po
11359acbbeafSnn
11367c478bd9Sstevel@tonic-gate#
11377c478bd9Sstevel@tonic-gate# When using xgettext, we want messages to go to the default domain,
11387c478bd9Sstevel@tonic-gate# rather than the specified one.  This special version of the
11397c478bd9Sstevel@tonic-gate# COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
11407c478bd9Sstevel@tonic-gate# causing xgettext to put all messages into the default domain.
11417c478bd9Sstevel@tonic-gate#
11427c478bd9Sstevel@tonic-gateCPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
11437c478bd9Sstevel@tonic-gate
11447c478bd9Sstevel@tonic-gate.c.i:
11457c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $@
11467c478bd9Sstevel@tonic-gate
11477c478bd9Sstevel@tonic-gate.h.i:
11487c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $@
11497c478bd9Sstevel@tonic-gate
11507c478bd9Sstevel@tonic-gate.y.i:
11517c478bd9Sstevel@tonic-gate	$(YACC) -d $<
11527c478bd9Sstevel@tonic-gate	$(CPPFORPO) y.tab.c  > $@
1153d69cdb36SRichard Lowe	$(RM) y.tab.c
11547c478bd9Sstevel@tonic-gate
11557c478bd9Sstevel@tonic-gate.l.i:
11567c478bd9Sstevel@tonic-gate	$(LEX) $<
11577c478bd9Sstevel@tonic-gate	$(CPPFORPO) lex.yy.c  > $@
11587c478bd9Sstevel@tonic-gate	$(RM) lex.yy.c
11597c478bd9Sstevel@tonic-gate
11607c478bd9Sstevel@tonic-gate.c.po:
11617c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $<.i
11627c478bd9Sstevel@tonic-gate	$(BUILD.po)
11637c478bd9Sstevel@tonic-gate
11647c478bd9Sstevel@tonic-gate.y.po:
11657c478bd9Sstevel@tonic-gate	$(YACC) -d $<
11667c478bd9Sstevel@tonic-gate	$(CPPFORPO) y.tab.c  > $<.i
11677c478bd9Sstevel@tonic-gate	$(BUILD.po)
1168d69cdb36SRichard Lowe	$(RM) y.tab.c
11697c478bd9Sstevel@tonic-gate
11707c478bd9Sstevel@tonic-gate.l.po:
11717c478bd9Sstevel@tonic-gate	$(LEX) $<
11727c478bd9Sstevel@tonic-gate	$(CPPFORPO) lex.yy.c  > $<.i
11737c478bd9Sstevel@tonic-gate	$(BUILD.po)
11747c478bd9Sstevel@tonic-gate	$(RM) lex.yy.c
11757c478bd9Sstevel@tonic-gate
11767c478bd9Sstevel@tonic-gate#
11777c478bd9Sstevel@tonic-gate# Rules to perform stylistic checks
11787c478bd9Sstevel@tonic-gate#
1179a778b211Scarlsonj.SUFFIXES: .x .xml .check .xmlchk
11807c478bd9Sstevel@tonic-gate
11817c478bd9Sstevel@tonic-gate.h.check:
11827c478bd9Sstevel@tonic-gate	$(DOT_H_CHECK)
11837c478bd9Sstevel@tonic-gate
11847c478bd9Sstevel@tonic-gate.x.check:
11857c478bd9Sstevel@tonic-gate	$(DOT_X_CHECK)
11867c478bd9Sstevel@tonic-gate
11877c478bd9Sstevel@tonic-gate.xml.xmlchk:
11887c478bd9Sstevel@tonic-gate	$(MANIFEST_CHECK)
11897c478bd9Sstevel@tonic-gate
119032f1e47bSsommerfe#
119132f1e47bSsommerfe# Include rules to render automated sccs get rules "safe".
1192d69cdb36SRichard Lowe#
119332f1e47bSsommerfeinclude $(SRC)/Makefile.noget
1194