xref: /illumos-gate/usr/src/Makefile.master (revision 662492f5)
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
57c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate# with the License.
87c478bd9Sstevel@tonic-gate#
97c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate# and limitations under the License.
137c478bd9Sstevel@tonic-gate#
147c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate#
207c478bd9Sstevel@tonic-gate# CDDL HEADER END
217c478bd9Sstevel@tonic-gate#
227c478bd9Sstevel@tonic-gate#
237c478bd9Sstevel@tonic-gate# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate# Use is subject to license terms.
257c478bd9Sstevel@tonic-gate#
267c478bd9Sstevel@tonic-gate# ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate# Makefile.master, global definitions for system source
297c478bd9Sstevel@tonic-gate#
307c478bd9Sstevel@tonic-gateROOT=		/proto
317c478bd9Sstevel@tonic-gate
327c478bd9Sstevel@tonic-gate# Historically, ON builds were always done with root permissions, and the
337c478bd9Sstevel@tonic-gate# owner/group information was duplicated in the Makefiles and the packaging
347c478bd9Sstevel@tonic-gate# data and kept in sync by manual intervention.  This is no longer true.
357c478bd9Sstevel@tonic-gate# The only source of this information is packaging.  The proto area ($ROOT)
367c478bd9Sstevel@tonic-gate# does not have definitive onwer/group information, and no Makefile should
377c478bd9Sstevel@tonic-gate# attempt to set this.  CH once toggled operations restricted to root.  It
387c478bd9Sstevel@tonic-gate# is now just set to `#'.
397c478bd9Sstevel@tonic-gate#
407c478bd9Sstevel@tonic-gate# At some point in the future, CH, CHOWN, CHGRP, OWNER, and GROUP should all
417c478bd9Sstevel@tonic-gate# be stripped completely from the source base.  They are kept for now until
427c478bd9Sstevel@tonic-gate# on10-based projects can merge and transition away from them.
437c478bd9Sstevel@tonic-gate#
447c478bd9Sstevel@tonic-gate# RELEASE_BUILD should be cleared for final release builds. This is completely
457c478bd9Sstevel@tonic-gate# independent of CH. 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#
517c478bd9Sstevel@tonic-gate# EXPORT_RELEASE_BUILD controls whether binaries are built in a form that
527c478bd9Sstevel@tonic-gate# can be released for export under a binary license.  It is orthogonal to
537c478bd9Sstevel@tonic-gate# the other *RELEASE_BUILD settings.
547c478bd9Sstevel@tonic-gate#
557c478bd9Sstevel@tonic-gate# STRIP_COMMENTS toggles comment section striping. Generally the same setting
567c478bd9Sstevel@tonic-gate# as INTERNAL_RELEASE_BUILD.
577c478bd9Sstevel@tonic-gate#
587c478bd9Sstevel@tonic-gate# STRIPFLAG is similar.  It is set here for use in lower level Makefiles to
597c478bd9Sstevel@tonic-gate# allow a single point change to affect the entire build.
607c478bd9Sstevel@tonic-gate#
617c478bd9Sstevel@tonic-gate# __GNUC toggles the building of ON components using gcc and related tools.
627c478bd9Sstevel@tonic-gate# Normally set to `#', set it to `' to do gcc build.
637c478bd9Sstevel@tonic-gate#
647c478bd9Sstevel@tonic-gate# The declaration POUND_SIGN is always '#'. This is needed to get around the
657c478bd9Sstevel@tonic-gate# make feature that '#' is always a comment delimiter, even when escaped or
667c478bd9Sstevel@tonic-gate# quoted.  The only way of generating this is the :sh macro mechanism.  Note
677c478bd9Sstevel@tonic-gate# however that in general :sh macros should be avoided in makefiles that are
687c478bd9Sstevel@tonic-gate# widely included into other makefiles, as the resulting shell executions can
697c478bd9Sstevel@tonic-gate# cause a noticable slowdown in build times.
707c478bd9Sstevel@tonic-gate#
717c478bd9Sstevel@tonic-gatePOUND_SIGN:sh=				echo \\043
727c478bd9Sstevel@tonic-gateCH=					$(POUND_SIGN)
737c478bd9Sstevel@tonic-gate
747c478bd9Sstevel@tonic-gateNOT_RELEASE_BUILD=
757c478bd9Sstevel@tonic-gateINTERNAL_RELEASE_BUILD=			$(POUND_SIGN)
767c478bd9Sstevel@tonic-gateRELEASE_BUILD=				$(POUND_SIGN)
777c478bd9Sstevel@tonic-gateEXPORT_RELEASE_BUILD=
787c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)NOT_RELEASE_BUILD=	$(POUND_SIGN)
797c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)INTERNAL_RELEASE_BUILD=
807c478bd9Sstevel@tonic-gatePATCH_BUILD=				$(POUND_SIGN)
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gate# SPARC_BLD is '#' for an Intel build.
837c478bd9Sstevel@tonic-gate# INTEL_BLD is '#' for a Sparc build.
847c478bd9Sstevel@tonic-gateSPARC_BLD_1=    $(MACH:i386=$(POUND_SIGN))
857c478bd9Sstevel@tonic-gateSPARC_BLD=      $(SPARC_BLD_1:sparc=)
867c478bd9Sstevel@tonic-gateINTEL_BLD_1=    $(MACH:sparc=$(POUND_SIGN))
877c478bd9Sstevel@tonic-gateINTEL_BLD=      $(INTEL_BLD_1:i386=)
887c478bd9Sstevel@tonic-gate
897c478bd9Sstevel@tonic-gateSTRIP_COMMENTS=	$(INTERNAL_RELEASE_BUILD)
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gate# Historical notes: at one point, STRIPFLAG was set to '-s' for root builds,
927c478bd9Sstevel@tonic-gate# and empty for non-root.  It's now set empty all the time, so that builds
937c478bd9Sstevel@tonic-gate# using manual invocation of "make install" will have debug data (as they did
947c478bd9Sstevel@tonic-gate# when run as non-root before).  The 'nightly' script overrides DEF_STRIPFLAG
957c478bd9Sstevel@tonic-gate# with '-s' so that nightly builds are stripped -- since nightlies were once
967c478bd9Sstevel@tonic-gate# done only as root, that preserves the known nightly behavior.  The
977c478bd9Sstevel@tonic-gate# non-nightly behavior can always be overridden by putting "STRIPFLAG=" in the
987c478bd9Sstevel@tonic-gate# environment, on the 'make' command line, or by overriding STRIPFLAG in the
997c478bd9Sstevel@tonic-gate# subsystem Makefile itself.  STRIP_COMMENTS, although similar in nature, has
1007c478bd9Sstevel@tonic-gate# always been controlled by INTERNAL_RELEASE_BUILD (always set by nightly).
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gateDEF_STRIPFLAG=
1037c478bd9Sstevel@tonic-gateSTRIPFLAG=$(DEF_STRIPFLAG)
1047c478bd9Sstevel@tonic-gate
1057c478bd9Sstevel@tonic-gate# set __GNUC= in the environment to build 32-bit with the gcc compiler.
1067c478bd9Sstevel@tonic-gate__GNUC=		$(POUND_SIGN)
1077c478bd9Sstevel@tonic-gate
1087c478bd9Sstevel@tonic-gate# set __GNUC64 to '#' in the environment to build 64-bit with the Studio
109bf40377cSwesolows# compiler.  The default is to use gcc for amd64 but not sparcv9.
110bf40377cSwesolows__GNUC64=	$(INTEL_BLD)
1117c478bd9Sstevel@tonic-gate
1127c478bd9Sstevel@tonic-gate# BUILD_TOOLS is the root of all tools including compilers.
1137c478bd9Sstevel@tonic-gate# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
1147c478bd9Sstevel@tonic-gate
1157c478bd9Sstevel@tonic-gateBUILD_TOOLS=		/ws/onnv-tools
1167c478bd9Sstevel@tonic-gateONBLD_TOOLS=		$(BUILD_TOOLS)/onbld
1177c478bd9Sstevel@tonic-gate
1187c478bd9Sstevel@tonic-gateJAVA_ROOT=	/usr/java
1197c478bd9Sstevel@tonic-gate
1207c478bd9Sstevel@tonic-gateSFW_ROOT=	/usr/sfw
121ebf35943SdinakSFWINCDIR=	$(SFW_ROOT)/include
1227c478bd9Sstevel@tonic-gateSFWLIBDIR=	$(SFW_ROOT)/lib
1237c478bd9Sstevel@tonic-gateSFWLIBDIR64=	$(SFW_ROOT)/lib/$(MACH64)
1247c478bd9Sstevel@tonic-gate
1257c478bd9Sstevel@tonic-gateRPCGEN=		/usr/bin/rpcgen
1267c478bd9Sstevel@tonic-gateSTABS=		$(ONBLD_TOOLS)/bin/$(MACH)/stabs
1277c478bd9Sstevel@tonic-gateECHO=		echo
1287c478bd9Sstevel@tonic-gateINS=		install
1297c478bd9Sstevel@tonic-gateTRUE=		true
1307c478bd9Sstevel@tonic-gateSYMLINK=	/usr/bin/ln -s
1317c478bd9Sstevel@tonic-gateLN=		/usr/bin/ln
1327c478bd9Sstevel@tonic-gateCHMOD=		/usr/bin/chmod
1337c478bd9Sstevel@tonic-gateCHOWN=		$(TRUE)
1347c478bd9Sstevel@tonic-gateCHGRP=		$(TRUE)
1357c478bd9Sstevel@tonic-gateMV=		/usr/bin/mv -f
1367c478bd9Sstevel@tonic-gateRM=		/usr/bin/rm -f
1377c478bd9Sstevel@tonic-gateGREP=		/usr/bin/grep
1387c478bd9Sstevel@tonic-gateSED=		/usr/bin/sed
1397c478bd9Sstevel@tonic-gateNAWK=		/usr/bin/nawk
1407c478bd9Sstevel@tonic-gateCP=		/usr/bin/cp -f
1417c478bd9Sstevel@tonic-gateMCS=		/usr/ccs/bin/mcs
1427c478bd9Sstevel@tonic-gateCAT=            /usr/bin/cat
1437c478bd9Sstevel@tonic-gateM4=		/usr/ccs/bin/m4
1447c478bd9Sstevel@tonic-gateSTRIP=		/usr/ccs/bin/strip
1457c478bd9Sstevel@tonic-gateLEX=		/usr/ccs/bin/lex
1467c478bd9Sstevel@tonic-gateYACC=		/usr/ccs/bin/yacc
1477c478bd9Sstevel@tonic-gateCPP=		/usr/lib/cpp
1487c478bd9Sstevel@tonic-gateJAVAC=		$(JAVA_ROOT)/bin/javac
1497c478bd9Sstevel@tonic-gateJAVAH=		$(JAVA_ROOT)/bin/javah
1507c478bd9Sstevel@tonic-gateJAVADOC=	$(JAVA_ROOT)/bin/javadoc
1517c478bd9Sstevel@tonic-gateRMIC=		$(JAVA_ROOT)/bin/rmic
1527c478bd9Sstevel@tonic-gateJAR=		$(JAVA_ROOT)/bin/jar
1537c478bd9Sstevel@tonic-gateCTFCONVERT=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
1547c478bd9Sstevel@tonic-gateCTFMERGE=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
1557c478bd9Sstevel@tonic-gateCTFSTABS=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
1567c478bd9Sstevel@tonic-gateGENOFFSETS=	$(ONBLD_TOOLS)/bin/genoffsets
1577c478bd9Sstevel@tonic-gateCTFCVTPTBL=	$(ONBLD_TOOLS)/bin/ctfcvtptbl
1587c478bd9Sstevel@tonic-gateCTFFINDMOD=	$(ONBLD_TOOLS)/bin/ctffindmod
1597c478bd9Sstevel@tonic-gateXREF=		$(ONBLD_TOOLS)/bin/xref
1607c478bd9Sstevel@tonic-gateFIND=		/usr/bin/find
1617c478bd9Sstevel@tonic-gatePERL=		/usr/bin/perl
1627c478bd9Sstevel@tonic-gateSORT=		/usr/bin/sort
1637c478bd9Sstevel@tonic-gateTOUCH=		/usr/bin/touch
1647c478bd9Sstevel@tonic-gateWC=		/usr/bin/wc
1657c478bd9Sstevel@tonic-gateXARGS=		/usr/bin/xargs
1667c478bd9Sstevel@tonic-gateELFSIGN=	/usr/bin/elfsign
1677c478bd9Sstevel@tonic-gateDTRACE=		/usr/sbin/dtrace
1687c478bd9Sstevel@tonic-gate
1697c478bd9Sstevel@tonic-gateFILEMODE=	644
1707c478bd9Sstevel@tonic-gateDIRMODE=	755
1717c478bd9Sstevel@tonic-gate
1727c478bd9Sstevel@tonic-gate# Note: owner and group for proto area objects is no longer set by
1737c478bd9Sstevel@tonic-gate# Makefiles at all.  These have no real effect and are kept here for
1747c478bd9Sstevel@tonic-gate# transition purposes.  They (along with CH, CHOWN, and CHGRP) should be
1757c478bd9Sstevel@tonic-gate# removed early in the s11 development cycle.
1767c478bd9Sstevel@tonic-gateOWNER=		root
1777c478bd9Sstevel@tonic-gateGROUP=		bin
1787c478bd9Sstevel@tonic-gate
1797c478bd9Sstevel@tonic-gate#
1807c478bd9Sstevel@tonic-gate# The version of the patch makeup table optimized for build-time use.  Used
1817c478bd9Sstevel@tonic-gate# during patch builds only.
1827c478bd9Sstevel@tonic-gate$(PATCH_BUILD)PMTMO_FILE=$(SRC)/patch_makeup_table.mo
1837c478bd9Sstevel@tonic-gate
1847c478bd9Sstevel@tonic-gate# Declare that nothing should be built in parallel.
1857c478bd9Sstevel@tonic-gate# Individual Makefiles can use the .PARALLEL target to declare otherwise.
1867c478bd9Sstevel@tonic-gate.NO_PARALLEL:
1877c478bd9Sstevel@tonic-gate
1887c478bd9Sstevel@tonic-gate# For stylistic checks
1897c478bd9Sstevel@tonic-gate#
1907c478bd9Sstevel@tonic-gate# Note that the X and C checks are not used at this time and may need
1917c478bd9Sstevel@tonic-gate# modification when they are actually used.
1927c478bd9Sstevel@tonic-gate#
1937c478bd9Sstevel@tonic-gateCSTYLE=		cstyle
1947c478bd9Sstevel@tonic-gateCSTYLE_TAIL=
1957c478bd9Sstevel@tonic-gateHDRCHK=		hdrchk
1967c478bd9Sstevel@tonic-gateHDRCHK_TAIL=
1977c478bd9Sstevel@tonic-gateJSTYLE=		jstyle
1987c478bd9Sstevel@tonic-gate
1997c478bd9Sstevel@tonic-gateDOT_H_CHECK=	\
2007c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
2017c478bd9Sstevel@tonic-gate	$(HDRCHK) $< $(HDRCHK_TAIL)
2027c478bd9Sstevel@tonic-gate
2037c478bd9Sstevel@tonic-gateDOT_X_CHECK=	\
2047c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
2057c478bd9Sstevel@tonic-gate	$(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
2067c478bd9Sstevel@tonic-gate
2077c478bd9Sstevel@tonic-gateDOT_C_CHECK=	\
2087c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
2097c478bd9Sstevel@tonic-gate
2107c478bd9Sstevel@tonic-gateMANIFEST_CHECK=	\
2117c478bd9Sstevel@tonic-gate	@$(ECHO) "checking $<"; \
2127c478bd9Sstevel@tonic-gate	SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
2137c478bd9Sstevel@tonic-gate	$(SRC)/cmd/svc/svccfg/svccfg-native validate $<
2147c478bd9Sstevel@tonic-gate
2157c478bd9Sstevel@tonic-gateINS.file=	$(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
2167c478bd9Sstevel@tonic-gateINS.dir=	$(INS) -s -d -m $(DIRMODE) $@
2177c478bd9Sstevel@tonic-gate# installs and renames at once
2187c478bd9Sstevel@tonic-gate#
2197c478bd9Sstevel@tonic-gateINS.rename=	$(INS.file); $(MV) $(@D)/$(<F) $@
2207c478bd9Sstevel@tonic-gate
2217c478bd9Sstevel@tonic-gate# install a link
2227c478bd9Sstevel@tonic-gateINSLINKTARGET=	$<
2237c478bd9Sstevel@tonic-gateINS.link=	$(RM) $@; $(LN) $(INSLINKTARGET) $@
2247c478bd9Sstevel@tonic-gate
2257c478bd9Sstevel@tonic-gate# MACH must be set in the shell environment per uname -p on the build host
2267c478bd9Sstevel@tonic-gate# More specific architecture variables should be set in lower makefiles.
2277c478bd9Sstevel@tonic-gate#
2287c478bd9Sstevel@tonic-gate# MACH64 is derived from MACH, and BUILD64 is set to `#' for
2297c478bd9Sstevel@tonic-gate# architectures on which we do not build 64-bit versions.
2307c478bd9Sstevel@tonic-gate# (There are no such architectures at the moment.)
2317c478bd9Sstevel@tonic-gate#
2327c478bd9Sstevel@tonic-gate# Set BUILD64=# in the environment to disable 64-bit amd64
2337c478bd9Sstevel@tonic-gate# builds on i386 machines.
2347c478bd9Sstevel@tonic-gate
2357c478bd9Sstevel@tonic-gateMACH64_1=	$(MACH:sparc=sparcv9)
2367c478bd9Sstevel@tonic-gateMACH64=		$(MACH64_1:i386=amd64)
2377c478bd9Sstevel@tonic-gate
2387c478bd9Sstevel@tonic-gateMACH32_1=	$(MACH:sparc=sparcv7)
2397c478bd9Sstevel@tonic-gateMACH32=		$(MACH32_1:i386=i86)
2407c478bd9Sstevel@tonic-gate
2417c478bd9Sstevel@tonic-gatesparc_BUILD64=
2427c478bd9Sstevel@tonic-gatei386_BUILD64=
2437c478bd9Sstevel@tonic-gateBUILD64=	$($(MACH)_BUILD64)
2447c478bd9Sstevel@tonic-gate
2457c478bd9Sstevel@tonic-gate#
2467c478bd9Sstevel@tonic-gate# C compiler mode. Future compilers may change the default on us,
2477c478bd9Sstevel@tonic-gate# so force extended ANSI mode globally. Lower level makefiles can
2487c478bd9Sstevel@tonic-gate# override this by setting CCMODE.
2497c478bd9Sstevel@tonic-gate#
2507c478bd9Sstevel@tonic-gateCCMODE=			-Xa
2517c478bd9Sstevel@tonic-gateCCMODE64=		-Xa
2527c478bd9Sstevel@tonic-gate
2537c478bd9Sstevel@tonic-gate#
2547c478bd9Sstevel@tonic-gate# C compiler verbose mode. This is so we can enable it globally,
2557c478bd9Sstevel@tonic-gate# but turn it off in the lower level makefiles of things we cannot
2567c478bd9Sstevel@tonic-gate# (or aren't going to) fix.
2577c478bd9Sstevel@tonic-gate#
2587c478bd9Sstevel@tonic-gateCCVERBOSE=		-v
2597c478bd9Sstevel@tonic-gate
2607c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
2617c478bd9Sstevel@tonic-gate# from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
2627c478bd9Sstevel@tonic-gateV9ABIWARN=
2637c478bd9Sstevel@tonic-gate
2647c478bd9Sstevel@tonic-gate# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
2657c478bd9Sstevel@tonic-gate# symbols (used to detect conflicts between objects that use global registers)
2667c478bd9Sstevel@tonic-gate# we disable this now for safety, and because genunix doesn't link with
2677c478bd9Sstevel@tonic-gate# this feature (the v9 default) enabled.
2687c478bd9Sstevel@tonic-gate#
2697c478bd9Sstevel@tonic-gate# REGSYM is separate since the C++ driver syntax is different.
2707c478bd9Sstevel@tonic-gateCCREGSYM=		-Wc,-Qiselect-regsym=0
2717c478bd9Sstevel@tonic-gateCCCREGSYM=		-Qoption cg -Qiselect-regsym=0
2727c478bd9Sstevel@tonic-gate
2737c478bd9Sstevel@tonic-gate#
2747c478bd9Sstevel@tonic-gate# generate 32-bit addresses in the v9 kernel. Saves memory.
2757c478bd9Sstevel@tonic-gateCCABS32=		-Wc,-xcode=abs32
2767c478bd9Sstevel@tonic-gate
2777c478bd9Sstevel@tonic-gate# One optimization the compiler might perform is to turn this:
2787c478bd9Sstevel@tonic-gate#	#pragma weak foo
2797c478bd9Sstevel@tonic-gate#	extern int foo;
2807c478bd9Sstevel@tonic-gate#	if (&foo)
2817c478bd9Sstevel@tonic-gate#		foo = 5;
2827c478bd9Sstevel@tonic-gate# into
2837c478bd9Sstevel@tonic-gate#	foo = 5;
2847c478bd9Sstevel@tonic-gate# Since we do some of this (foo might be referenced in common kernel code
2857c478bd9Sstevel@tonic-gate# but provided only for some cpu modules or platforms), we disable this
2867c478bd9Sstevel@tonic-gate# optimization.
2877c478bd9Sstevel@tonic-gate#
2887c478bd9Sstevel@tonic-gatesparc_CCUNBOUND	= -Wd,-xsafe=unboundsym
2897c478bd9Sstevel@tonic-gatei386_CCUNBOUND	=
2907c478bd9Sstevel@tonic-gateCCUNBOUND	= $($(MACH)_CCUNBOUND)
2917c478bd9Sstevel@tonic-gate
2927c478bd9Sstevel@tonic-gate#
2937c478bd9Sstevel@tonic-gate# compiler '-xarch' flag. This is here to centralize it and make it
2947c478bd9Sstevel@tonic-gate# overridable for testing.
2957c478bd9Sstevel@tonic-gatesparc_XARCH=		-xarch=v8
2967c478bd9Sstevel@tonic-gatesparcv9_XARCH=		-xarch=v9
2977c478bd9Sstevel@tonic-gatei386_XARCH=
2987c478bd9Sstevel@tonic-gateamd64_XARCH=		-xarch=amd64 -Ui386 -U__i386
2997c478bd9Sstevel@tonic-gate
3007c478bd9Sstevel@tonic-gate# assembler '-xarch' flag.  Different from compiler '-xarch' flag.
3017c478bd9Sstevel@tonic-gatesparc_AS_XARCH=		-xarch=v8
3027c478bd9Sstevel@tonic-gatesparcv9_AS_XARCH=	-xarch=v9
3037c478bd9Sstevel@tonic-gatei386_AS_XARCH=
3047c478bd9Sstevel@tonic-gateamd64_AS_XARCH=		-xarch=amd64 -P -Ui386 -U__i386
3057c478bd9Sstevel@tonic-gate
3067c478bd9Sstevel@tonic-gate#
3077c478bd9Sstevel@tonic-gate# These flags define what we need to be 'standalone' i.e. -not- part
3087c478bd9Sstevel@tonic-gate# of the rather more cosy userland environment.  This basically means
3097c478bd9Sstevel@tonic-gate# the kernel.
3107c478bd9Sstevel@tonic-gate#
3117c478bd9Sstevel@tonic-gate# XX64	future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
3127c478bd9Sstevel@tonic-gate#
3137c478bd9Sstevel@tonic-gatesparc_STAND_FLAGS=
3147c478bd9Sstevel@tonic-gatesparcv9_STAND_FLAGS=
3157c478bd9Sstevel@tonic-gatei386_STAND_FLAGS=	-_gcc=-ffreestanding
3167c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS=	-Wu,-xmodel=kernel
3177c478bd9Sstevel@tonic-gate
3187c478bd9Sstevel@tonic-gateSAVEARGS=		-Wu,-save_args
3197c478bd9Sstevel@tonic-gate$(__GNUC64)SAVEARGS=
3207c478bd9Sstevel@tonic-gateamd64_STAND_FLAGS	+= $(SAVEARGS)
3217c478bd9Sstevel@tonic-gate
3227c478bd9Sstevel@tonic-gateSTAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
3237c478bd9Sstevel@tonic-gateSTAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
3247c478bd9Sstevel@tonic-gate
3257c478bd9Sstevel@tonic-gate#
3267c478bd9Sstevel@tonic-gate# disable the incremental linker
3277c478bd9Sstevel@tonic-gateILDOFF=			-xildoff
3287c478bd9Sstevel@tonic-gate#
3297c478bd9Sstevel@tonic-gateXDEPEND=		-xdepend
3307c478bd9Sstevel@tonic-gateXFFLAG=			-xF
3317c478bd9Sstevel@tonic-gateXESS=			-xs
3327c478bd9Sstevel@tonic-gateXSTRCONST=		-xstrconst
3337c478bd9Sstevel@tonic-gate
3347c478bd9Sstevel@tonic-gate#
3357c478bd9Sstevel@tonic-gate# turn warnings into errors (C)
3367c478bd9Sstevel@tonic-gateCERRWARN = -errtags=yes -errwarn=%all
3377c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
3387c478bd9Sstevel@tonic-gateCERRWARN += -erroff=E_STATEMENT_NOT_REACHED
3397c478bd9Sstevel@tonic-gate
3407c478bd9Sstevel@tonic-gate#
3417c478bd9Sstevel@tonic-gate# turn warnings into errors (C++)
3427c478bd9Sstevel@tonic-gateCCERRWARN=		-xwe
3437c478bd9Sstevel@tonic-gate
3447c478bd9Sstevel@tonic-gate# C99 mode
3457c478bd9Sstevel@tonic-gateC99_ENABLE=	-xc99=%all
3467c478bd9Sstevel@tonic-gateC99_DISABLE=	-xc99=%none
3477c478bd9Sstevel@tonic-gateC99MODE=	$(C99_DISABLE)
3482df8f1d2Smike_sC99LMODE=	$(C99MODE:-xc99%=-Xc99%)
3497c478bd9Sstevel@tonic-gate
3507c478bd9Sstevel@tonic-gate# In most places, assignments to these macros should be appended with +=
3517c478bd9Sstevel@tonic-gate# (CPPFLAGS.master allows values to be prepended to CPPFLAGS).
3527c478bd9Sstevel@tonic-gatesparc_CFLAGS=	$(sparc_XARCH)
3537c478bd9Sstevel@tonic-gatesparcv9_CFLAGS=	$(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM)
3547c478bd9Sstevel@tonic-gatei386_CFLAGS=	$(i386_XARCH)
3557c478bd9Sstevel@tonic-gateamd64_CFLAGS=	$(amd64_XARCH)
3567c478bd9Sstevel@tonic-gate
3577c478bd9Sstevel@tonic-gatesparc_ASFLAGS=	$(sparc_AS_XARCH)
3587c478bd9Sstevel@tonic-gatesparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
3597c478bd9Sstevel@tonic-gatei386_ASFLAGS=	$(i386_AS_XARCH)
3607c478bd9Sstevel@tonic-gateamd64_ASFLAGS=	$(amd64_AS_XARCH)
3617c478bd9Sstevel@tonic-gate
3627c478bd9Sstevel@tonic-gate#
3637c478bd9Sstevel@tonic-gatesparc_COPTFLAG=		-xO3
3647c478bd9Sstevel@tonic-gatesparcv9_COPTFLAG=	-xO3
3657c478bd9Sstevel@tonic-gatei386_COPTFLAG=		-O
366*662492f5Ssherrymamd64_COPTFLAG=		-xO3
3677c478bd9Sstevel@tonic-gate
3687c478bd9Sstevel@tonic-gateCOPTFLAG= $($(MACH)_COPTFLAG)
3697c478bd9Sstevel@tonic-gateCOPTFLAG64= $($(MACH64)_COPTFLAG)
3707c478bd9Sstevel@tonic-gate
3717c478bd9Sstevel@tonic-gate# When -g is used, the compiler globalizes static objects
3727c478bd9Sstevel@tonic-gate# (gives them a unique prefix). Disable that.
3737c478bd9Sstevel@tonic-gateCNOGLOBAL= -W0,-noglobal
3747c478bd9Sstevel@tonic-gate
3757c478bd9Sstevel@tonic-gate#
3767c478bd9Sstevel@tonic-gate# Flags used to build in debug mode for ctf generation.  Bugs in the Devpro
3777c478bd9Sstevel@tonic-gate# compilers currently prevent us from building with cc-emitted DWARF.
3787c478bd9Sstevel@tonic-gate#
3797c478bd9Sstevel@tonic-gateCTF_FLAGS_sparc	= -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL)
3807c478bd9Sstevel@tonic-gateCTF_FLAGS_i386	= -g $(C99MODE) $(CNOGLOBAL)
3817c478bd9Sstevel@tonic-gateCTF_FLAGS	= $(CTF_FLAGS_$(MACH))
3827c478bd9Sstevel@tonic-gate
3837c478bd9Sstevel@tonic-gate#
3847c478bd9Sstevel@tonic-gate# Flags used with genoffsets
3857c478bd9Sstevel@tonic-gate#
386bf40377cSwesolowsGOFLAGS = -_noecho \
3877c478bd9Sstevel@tonic-gate	-_gcc=-fno-eliminate-unused-debug-symbols \
3887c478bd9Sstevel@tonic-gate	-_gcc=-fno-eliminate-unused-debug-types
3897c478bd9Sstevel@tonic-gate
3907c478bd9Sstevel@tonic-gateOFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
3917c478bd9Sstevel@tonic-gate	$(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
3927c478bd9Sstevel@tonic-gate
3937c478bd9Sstevel@tonic-gateOFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
3947c478bd9Sstevel@tonic-gate	$(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
3957c478bd9Sstevel@tonic-gate
3967c478bd9Sstevel@tonic-gate#
3977c478bd9Sstevel@tonic-gate# tradeoff time for space (smaller is better)
3987c478bd9Sstevel@tonic-gate#
3997c478bd9Sstevel@tonic-gatesparc_SPACEFLAG		= -xspace -W0,-Lt -W2,-Rcond_elim
4007c478bd9Sstevel@tonic-gatesparcv9_SPACEFLAG	= -xspace -W0,-Lt -W2,-Rcond_elim
4017c478bd9Sstevel@tonic-gatei386_SPACEFLAG		= -xspace
4027c478bd9Sstevel@tonic-gateamd64_SPACEFLAG		=
4037c478bd9Sstevel@tonic-gate
4047c478bd9Sstevel@tonic-gateSPACEFLAG		= $($(MACH)_SPACEFLAG)
4057c478bd9Sstevel@tonic-gateSPACEFLAG64		= $($(MACH64)_SPACEFLAG)
4067c478bd9Sstevel@tonic-gate
4077c478bd9Sstevel@tonic-gatesparc_XREGSFLAG		= -xregs=no%appl
4087c478bd9Sstevel@tonic-gatesparcv9_XREGSFLAG	= -xregs=no%appl
4097c478bd9Sstevel@tonic-gatei386_XREGSFLAG		=
4107c478bd9Sstevel@tonic-gateamd64_XREGSFLAG		=
4117c478bd9Sstevel@tonic-gate
4127c478bd9Sstevel@tonic-gateXREGSFLAG		= $($(MACH)_XREGSFLAG)
4137c478bd9Sstevel@tonic-gateXREGSFLAG64		= $($(MACH64)_XREGSFLAG)
4147c478bd9Sstevel@tonic-gate
4157c478bd9Sstevel@tonic-gateCFLAGS=         $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
4167c478bd9Sstevel@tonic-gate		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND)
4177c478bd9Sstevel@tonic-gateCFLAGS64=       $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
4187c478bd9Sstevel@tonic-gate		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND)
4197c478bd9Sstevel@tonic-gateNATIVE_CFLAGS=	$(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
4207c478bd9Sstevel@tonic-gate		$(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND)
4217c478bd9Sstevel@tonic-gate
4227c478bd9Sstevel@tonic-gateDTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\"	# For messaging.
4237c478bd9Sstevel@tonic-gateDTS_ERRNO=-D_TS_ERRNO
4247c478bd9Sstevel@tonic-gateCPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
4257c478bd9Sstevel@tonic-gate	$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4)
4267c478bd9Sstevel@tonic-gateCPPFLAGS=	$(CPPFLAGS.master)
4277c478bd9Sstevel@tonic-gateAS_CPPFLAGS=	$(CPPFLAGS.master)
4287c478bd9Sstevel@tonic-gateJAVAFLAGS=	-deprecation
4297c478bd9Sstevel@tonic-gate
4307c478bd9Sstevel@tonic-gate#
4317c478bd9Sstevel@tonic-gate# For source message catalogue
4327c478bd9Sstevel@tonic-gate#
4337c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .i .po
4347c478bd9Sstevel@tonic-gateMSGROOT= $(ROOT)/catalog
4357c478bd9Sstevel@tonic-gateMSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
4367c478bd9Sstevel@tonic-gateMSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
4377c478bd9Sstevel@tonic-gateDCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
4387c478bd9Sstevel@tonic-gateDCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
4397c478bd9Sstevel@tonic-gate
4407c478bd9Sstevel@tonic-gateCLOBBERFILES += $(POFILE) $(POFILES)
4417c478bd9Sstevel@tonic-gateCOMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
4427c478bd9Sstevel@tonic-gateXGETTEXT= /usr/bin/xgettext
4437c478bd9Sstevel@tonic-gateXGETFLAGS= -c TRANSLATION_NOTE
4447c478bd9Sstevel@tonic-gateBUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
4457c478bd9Sstevel@tonic-gate	$(RM)	$@ ;\
4467c478bd9Sstevel@tonic-gate	sed "/^domain/d" < $(<F).po > $@ ;\
4477c478bd9Sstevel@tonic-gate	$(RM) $(<F).po $<.i
4487c478bd9Sstevel@tonic-gate#
4497c478bd9Sstevel@tonic-gate# This is overwritten by local Makefile when PROG is a list.
4507c478bd9Sstevel@tonic-gate#
4517c478bd9Sstevel@tonic-gatePOFILE= $(PROG).po
4527c478bd9Sstevel@tonic-gate
4537c478bd9Sstevel@tonic-gatesparc_CCFLAGS=		-cg92 -compat=4 \
4547c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
4557c478bd9Sstevel@tonic-gate			$(CCERRWARN)
4567c478bd9Sstevel@tonic-gatesparcv9_CCFLAGS=	$(sparcv9_XARCH) -dalign -compat=5 \
4577c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
4587c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
4597c478bd9Sstevel@tonic-gate			$(CCCREGSYM) \
4607c478bd9Sstevel@tonic-gate			$(CCERRWARN)
4617c478bd9Sstevel@tonic-gatei386_CCFLAGS=		-compat=4 \
4627c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
4637c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
4647c478bd9Sstevel@tonic-gate			$(CCERRWARN)
4657c478bd9Sstevel@tonic-gateamd64_CCFLAGS=		$(amd64_XARCH) -compat=5 \
4667c478bd9Sstevel@tonic-gate			-Qoption ccfe -messages=no%anachronism \
4677c478bd9Sstevel@tonic-gate			-Qoption ccfe -features=no%conststrings \
4687c478bd9Sstevel@tonic-gate			$(CCERRWARN)
4697c478bd9Sstevel@tonic-gate
4707c478bd9Sstevel@tonic-gatesparc_CCOPTFLAG=	-O
4717c478bd9Sstevel@tonic-gatesparcv9_CCOPTFLAG=	-O
4727c478bd9Sstevel@tonic-gatei386_CCOPTFLAG=		-O
4737c478bd9Sstevel@tonic-gateamd64_CCOPTFLAG=	-O
4747c478bd9Sstevel@tonic-gate
4757c478bd9Sstevel@tonic-gateCCOPTFLAG=	$($(MACH)_CCOPTFLAG)
4767c478bd9Sstevel@tonic-gateCCOPTFLAG64=	$($(MACH64)_CCOPTFLAG)
4777c478bd9Sstevel@tonic-gateCCFLAGS=	$(CCOPTFLAG) $($(MACH)_CCFLAGS)
4787c478bd9Sstevel@tonic-gateCCFLAGS64=	$(CCOPTFLAG64) $($(MACH64)_CCFLAGS)
4797c478bd9Sstevel@tonic-gate#
4807c478bd9Sstevel@tonic-gate# Used by Makefile.cmd, Makefile.lib and Makefile.ucbcmd
4817c478bd9Sstevel@tonic-gate#
4827c478bd9Sstevel@tonic-gatePGA_MAPFILE =	$(SRC)/cmd/sgs/mapfiles/$(MACH)/map.pagealign
4837c478bd9Sstevel@tonic-gate#
4847c478bd9Sstevel@tonic-gate#
4857c478bd9Sstevel@tonic-gate# LDLIBS32 can be set in the environment to override the following assignment.
4867c478bd9Sstevel@tonic-gate# LDLIBS64 can be set to override the assignment made in Makefile.master.64.
4877c478bd9Sstevel@tonic-gate# These environment settings make sure that no libraries are searched outside
4887c478bd9Sstevel@tonic-gate# of the local workspace proto area:
4897c478bd9Sstevel@tonic-gate#	LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
4907c478bd9Sstevel@tonic-gate#	LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
4917c478bd9Sstevel@tonic-gate#
4927c478bd9Sstevel@tonic-gateLDLIBS32 =	$(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
4937c478bd9Sstevel@tonic-gateLDLIBS.cmd = 	$(LDLIBS32)
4947c478bd9Sstevel@tonic-gateLDLIBS.lib =	$(LDLIBS32)
4957c478bd9Sstevel@tonic-gate#
4967c478bd9Sstevel@tonic-gate# Define compilation macros.
4977c478bd9Sstevel@tonic-gate#
4987c478bd9Sstevel@tonic-gateCOMPILE.c=	$(CC) $(CFLAGS) $(CPPFLAGS) -c
4997c478bd9Sstevel@tonic-gateCOMPILE64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) -c
5007c478bd9Sstevel@tonic-gateCOMPILE.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) -c
5017c478bd9Sstevel@tonic-gateCOMPILE64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
5027c478bd9Sstevel@tonic-gateCOMPILE.s=	$(AS) $(ASFLAGS) $(AS_CPPFLAGS)
5037c478bd9Sstevel@tonic-gateCOMPILE64.s=	$(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
5047c478bd9Sstevel@tonic-gateCOMPILE.d=	$(DTRACE) -G -32
5057c478bd9Sstevel@tonic-gateCOMPILE64.d=	$(DTRACE) -G -64
5067c478bd9Sstevel@tonic-gate
5077c478bd9Sstevel@tonic-gateCLASSPATH=	.
5087c478bd9Sstevel@tonic-gateCOMPILE.java=	$(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
5097c478bd9Sstevel@tonic-gate
5107c478bd9Sstevel@tonic-gate#
5117c478bd9Sstevel@tonic-gate# Link time macros
5127c478bd9Sstevel@tonic-gate#
5137c478bd9Sstevel@tonic-gateCCNEEDED		= -lC
5147c478bd9Sstevel@tonic-gate# XX64  What to do about libstdc++ for g++ ???
5157c478bd9Sstevel@tonic-gate
5167c478bd9Sstevel@tonic-gateLINK.c=		$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
5177c478bd9Sstevel@tonic-gateLINK64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
5187c478bd9Sstevel@tonic-gateNORUNPATH=	-norunpath -nolib
5197c478bd9Sstevel@tonic-gateLINK.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
5207c478bd9Sstevel@tonic-gate		$(LDFLAGS) $(CCNEEDED)
5217c478bd9Sstevel@tonic-gateLINK64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
5227c478bd9Sstevel@tonic-gate		$(LDFLAGS) $(CCNEEDED)
5237c478bd9Sstevel@tonic-gate
5247c478bd9Sstevel@tonic-gate#
5257c478bd9Sstevel@tonic-gate# lint macros
5267c478bd9Sstevel@tonic-gate#
5277c478bd9Sstevel@tonic-gate# Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
5287c478bd9Sstevel@tonic-gate# ON is built with a version of lint that has the fix for 4484186.
5297c478bd9Sstevel@tonic-gate#
5307c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS =	-errtags=yes -s
5317c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PTRDIFF_OVERFLOW
5327c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_NARROW_CONV
5337c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-U__PRAGMA_REDEFINE_EXTNAME
5347c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	$(C99LMODE)
5357c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-errsecurity=$(SECLEVEL)
5367c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_SEC_CREAT_WITHOUT_EXCL
5377c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_SEC_FORBIDDEN_WARN_CREAT
5387c478bd9Sstevel@tonic-gate# XX64 -- really only needed for amd64 lint
5397c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_INT_TO_SMALL_INT
5407c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_CONST_TO_SMALL_INT
5417c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_TO_SMALL_INT
5427c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_CAST_TO_PTR_FROM_INT
5437c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_COMP_INT_WITH_LARGE_INT
5447c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_INTEGRAL_CONST_EXP_EXPECTED
5457c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PASS_INT_TO_SMALL_INT
5467c478bd9Sstevel@tonic-gateALWAYS_LINT_DEFS +=	-erroff=E_PTR_CONV_LOSES_BITS
5477c478bd9Sstevel@tonic-gate
5487c478bd9Sstevel@tonic-gateSECLEVEL=	core
5497c478bd9Sstevel@tonic-gateLINT.c=		$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(ALWAYS_LINT_DEFS)
5507c478bd9Sstevel@tonic-gateLINT64.c=	$(LINT) $(LINTFLAGS64) $(CPPFLAGS) $(ALWAYS_LINT_DEFS)
5517c478bd9Sstevel@tonic-gateLINT.s=		$(LINT.c)
5527c478bd9Sstevel@tonic-gate
5537c478bd9Sstevel@tonic-gate# For some future builds, NATIVE_MACH and MACH might be different.
5547c478bd9Sstevel@tonic-gate# Therefore, NATIVE_MACH needs to be redefined in the
5557c478bd9Sstevel@tonic-gate# environment as `uname -p` to override this macro.
5567c478bd9Sstevel@tonic-gate#
5577c478bd9Sstevel@tonic-gate# For now at least, we cross-compile amd64 on i386 machines.
5587c478bd9Sstevel@tonic-gateNATIVE_MACH=	$(MACH:amd64=i386)
5597c478bd9Sstevel@tonic-gate
5607c478bd9Sstevel@tonic-gate# Define native compilation macros
5617c478bd9Sstevel@tonic-gate#
5627c478bd9Sstevel@tonic-gate
5637c478bd9Sstevel@tonic-gate# Base directory where compilers are loaded.
5647c478bd9Sstevel@tonic-gate# Defined here so it can be overridden by developer.
5657c478bd9Sstevel@tonic-gate#
5667c478bd9Sstevel@tonic-gateSPRO_ROOT=		$(BUILD_TOOLS)/SUNWspro
5677c478bd9Sstevel@tonic-gateSPRO_VROOT=		$(SPRO_ROOT)/SOS8
5687c478bd9Sstevel@tonic-gateGNU_ROOT=		$(SFW_ROOT)
5697c478bd9Sstevel@tonic-gate
5707c478bd9Sstevel@tonic-gate# Specify platform compiler versions for languages
5717c478bd9Sstevel@tonic-gate# that we use (currently only c and c++).
5727c478bd9Sstevel@tonic-gate#
573bf40377cSwesolowssparc_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
574bf40377cSwesolows$(__GNUC)sparc_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
575bf40377cSwesolowssparc_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
576bf40377cSwesolows$(__GNUC)sparc_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
5777c478bd9Sstevel@tonic-gatesparc_CPP=		/usr/ccs/lib/cpp
5787c478bd9Sstevel@tonic-gatesparc_AS=		/usr/ccs/bin/as -xregsym=no
5797c478bd9Sstevel@tonic-gatesparc_LD=		/usr/ccs/bin/ld
5807c478bd9Sstevel@tonic-gatesparc_LINT=		$(SPRO_VROOT)/bin/lint
5817c478bd9Sstevel@tonic-gate
582bf40377cSwesolowssparcv9_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
583bf40377cSwesolows$(__GNUC64)sparcv9_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
584bf40377cSwesolowssparcv9_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
585bf40377cSwesolows$(__GNUC64)sparcv9_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
5867c478bd9Sstevel@tonic-gatesparcv9_CPP=		/usr/ccs/lib/cpp
5877c478bd9Sstevel@tonic-gatesparcv9_AS=		/usr/ccs/bin/as -xregsym=no
5887c478bd9Sstevel@tonic-gatesparcv9_LD=		/usr/ccs/bin/ld
5897c478bd9Sstevel@tonic-gatesparcv9_LINT=		$(SPRO_VROOT)/bin/lint
5907c478bd9Sstevel@tonic-gate
5917c478bd9Sstevel@tonic-gate# We compile 32-bit objects with cc by default
5927c478bd9Sstevel@tonic-gatei386_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
5937c478bd9Sstevel@tonic-gate$(__GNUC)i386_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
5947c478bd9Sstevel@tonic-gatei386_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
5957c478bd9Sstevel@tonic-gate$(__GNUC)i386_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
5967c478bd9Sstevel@tonic-gatei386_CPP=		/usr/ccs/lib/cpp
5977c478bd9Sstevel@tonic-gatei386_AS=		/usr/ccs/bin/as
5987c478bd9Sstevel@tonic-gate$(__GNUC)i386_AS=	$(ONBLD_TOOLS)/bin/$(MACH)/aw
5997c478bd9Sstevel@tonic-gatei386_LD=		/usr/ccs/bin/ld
6007c478bd9Sstevel@tonic-gatei386_LINT=		$(SPRO_VROOT)/bin/lint
6017c478bd9Sstevel@tonic-gate
6027c478bd9Sstevel@tonic-gate# We compile 64-bit objects with gcc
6037c478bd9Sstevel@tonic-gateamd64_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
6047c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
6057c478bd9Sstevel@tonic-gateamd64_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
6067c478bd9Sstevel@tonic-gate$(__GNUC64)amd64_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
6077c478bd9Sstevel@tonic-gateamd64_CPP=		/usr/ccs/lib/cpp
6087c478bd9Sstevel@tonic-gateamd64_AS=		$(ONBLD_TOOLS)/bin/$(MACH)/aw
6097c478bd9Sstevel@tonic-gateamd64_LD=		/usr/ccs/bin/ld
6107c478bd9Sstevel@tonic-gateamd64_LINT=		$(SPRO_ROOT)/SOS10-EA/bin/lint
6117c478bd9Sstevel@tonic-gate
6127c478bd9Sstevel@tonic-gateNATIVECC=		$($(NATIVE_MACH)_CC)
6137c478bd9Sstevel@tonic-gateNATIVECCC=		$($(NATIVE_MACH)_CCC)
6147c478bd9Sstevel@tonic-gateNATIVECPP=		$($(NATIVE_MACH)_CPP)
6157c478bd9Sstevel@tonic-gateNATIVEAS=		$($(NATIVE_MACH)_AS)
6167c478bd9Sstevel@tonic-gateNATIVELD=		$($(NATIVE_MACH)_LD)
6177c478bd9Sstevel@tonic-gateNATIVELINT=		$($(NATIVE_MACH)_LINT)
6187c478bd9Sstevel@tonic-gate
6197c478bd9Sstevel@tonic-gate#
6207c478bd9Sstevel@tonic-gate# Makefile.master.64 overrides these settings
6217c478bd9Sstevel@tonic-gate#
6227c478bd9Sstevel@tonic-gateCC=			$(NATIVECC)
6237c478bd9Sstevel@tonic-gateCCC=			$(NATIVECCC)
6247c478bd9Sstevel@tonic-gateCPP=			$(NATIVECPP)
6257c478bd9Sstevel@tonic-gateAS=			$(NATIVEAS)
6267c478bd9Sstevel@tonic-gateLD=			$(NATIVELD)
6277c478bd9Sstevel@tonic-gateLINT=			$(NATIVELINT)
6287c478bd9Sstevel@tonic-gate
6297c478bd9Sstevel@tonic-gate# Pass -Y flag to cpp (method of which is release-dependent)
6307c478bd9Sstevel@tonic-gateCCYFLAG=		-Y I,
6317c478bd9Sstevel@tonic-gate
6327c478bd9Sstevel@tonic-gateBDIRECT=	-Bdirect
6337c478bd9Sstevel@tonic-gateBDYNAMIC=	-Bdynamic
6347c478bd9Sstevel@tonic-gateBLOCAL=		-Blocal
6357c478bd9Sstevel@tonic-gateBREDUCE=	-Breduce
6367c478bd9Sstevel@tonic-gateBSTATIC=	-Bstatic
6377c478bd9Sstevel@tonic-gateBSYMBOLIC=	-Bsymbolic
6387c478bd9Sstevel@tonic-gate
6397c478bd9Sstevel@tonic-gateZCOMBRELOC=	-zcombreloc
6407c478bd9Sstevel@tonic-gateZDEFS=		-zdefs
6417c478bd9Sstevel@tonic-gateZIGNORE=	-zignore
6427c478bd9Sstevel@tonic-gateZINITFIRST=	-zinitfirst
6437c478bd9Sstevel@tonic-gateZINTERPOSE=	-zinterpose
6447c478bd9Sstevel@tonic-gateZLAZYLOAD=	-zlazyload
6457c478bd9Sstevel@tonic-gateZLOADFLTR=	-zloadfltr
6467c478bd9Sstevel@tonic-gateZMULDEFS=	-zmuldefs
6477c478bd9Sstevel@tonic-gateZNODEFAULTLIB=	-znodefaultlib
6487c478bd9Sstevel@tonic-gateZNODEFS=	-znodefs
6497c478bd9Sstevel@tonic-gateZNODELETE=	-znodelete
6507c478bd9Sstevel@tonic-gateZNODLOPEN=	-znodlopen
6517c478bd9Sstevel@tonic-gateZNODUMP=	-znodump
6527c478bd9Sstevel@tonic-gateZNOLAZYLOAD=	-znolazyload
6537c478bd9Sstevel@tonic-gateZNOVERSION=	-znoversion
6547c478bd9Sstevel@tonic-gateZREDLOCSYM=	-zredlocsym
6557c478bd9Sstevel@tonic-gateZTEXT=		-ztext
6567c478bd9Sstevel@tonic-gate
6577c478bd9Sstevel@tonic-gateGSHARED=	-G
6587c478bd9Sstevel@tonic-gateCCMT=		-mt
6597c478bd9Sstevel@tonic-gate
6607c478bd9Sstevel@tonic-gate# Handle different PIC models on different ISAs
6617c478bd9Sstevel@tonic-gate# (May be overridden by lower-level Makefiles)
6627c478bd9Sstevel@tonic-gate
6637c478bd9Sstevel@tonic-gatesparc_C_PICFLAGS =	-K pic
6647c478bd9Sstevel@tonic-gatesparcv9_C_PICFLAGS =	-K pic
6657c478bd9Sstevel@tonic-gatei386_C_PICFLAGS =	-K pic
6667c478bd9Sstevel@tonic-gateamd64_C_PICFLAGS =	-K pic
6677c478bd9Sstevel@tonic-gateC_PICFLAGS =		$($(MACH)_C_PICFLAGS)
6687c478bd9Sstevel@tonic-gateC_PICFLAGS64 =		$($(MACH64)_C_PICFLAGS)
6697c478bd9Sstevel@tonic-gate
6707c478bd9Sstevel@tonic-gatesparc_C_BIGPICFLAGS =	-K PIC
6717c478bd9Sstevel@tonic-gatesparcv9_C_BIGPICFLAGS =	-K PIC
6727c478bd9Sstevel@tonic-gatei386_C_BIGPICFLAGS =	-K PIC
6737c478bd9Sstevel@tonic-gateamd64_C_BIGPICFLAGS =	-K PIC
6747c478bd9Sstevel@tonic-gateC_BIGPICFLAGS =		$($(MACH)_C_BIGPICFLAGS)
6757c478bd9Sstevel@tonic-gateC_BIGPICFLAGS64 =	$($(MACH64)_C_BIGPICFLAGS)
6767c478bd9Sstevel@tonic-gate
6777c478bd9Sstevel@tonic-gate# CC requires there to be no space between '-K' and 'pic' or 'PIC'.
6787c478bd9Sstevel@tonic-gatesparc_CC_PICFLAGS =	-Kpic
6797c478bd9Sstevel@tonic-gatesparcv9_CC_PICFLAGS =	-KPIC
6807c478bd9Sstevel@tonic-gatei386_CC_PICFLAGS = 	-Kpic
6817c478bd9Sstevel@tonic-gateamd64_CC_PICFLAGS = 	-Kpic
6827c478bd9Sstevel@tonic-gateCC_PICFLAGS =		$($(MACH)_CC_PICFLAGS)
6837c478bd9Sstevel@tonic-gateCC_PICFLAGS64 =		$($(MACH64)_CC_PICFLAGS)
6847c478bd9Sstevel@tonic-gate
6857c478bd9Sstevel@tonic-gateAS_PICFLAGS=		$(C_PICFLAGS)
6867c478bd9Sstevel@tonic-gateAS_BIGPICFLAGS=		$(C_BIGPICFLAGS)
6877c478bd9Sstevel@tonic-gate
6887c478bd9Sstevel@tonic-gate#
6897c478bd9Sstevel@tonic-gate# Default label for CTF sections
6907c478bd9Sstevel@tonic-gate#
6917c478bd9Sstevel@tonic-gateCTFCVTFLAGS=		-i -L VERSION
6927c478bd9Sstevel@tonic-gate
6937c478bd9Sstevel@tonic-gate#
6947c478bd9Sstevel@tonic-gate# Override to pass module-specific flags to ctfmerge.  Currently used
6957c478bd9Sstevel@tonic-gate# only by krtld to turn on fuzzy matching.
6967c478bd9Sstevel@tonic-gate#
6977c478bd9Sstevel@tonic-gateCTFMRGFLAGS=
6987c478bd9Sstevel@tonic-gate
6997c478bd9Sstevel@tonic-gateCTFCONVERT_O		= $(CTFCONVERT) $(CTFCVTFLAGS) $@
7007c478bd9Sstevel@tonic-gate
7017c478bd9Sstevel@tonic-gateELFSIGN_O=	$(TRUE)
7027c478bd9Sstevel@tonic-gateELFSIGN_CRYPTO=	$(ELFSIGN_O)
7037c478bd9Sstevel@tonic-gateELFSIGN_OBJECT=	$(ELFSIGN_O)
7047c478bd9Sstevel@tonic-gate# EXPORT DELETE START
7057c478bd9Sstevel@tonic-gate# Note: The setting of ELFSIGN_O, etc. to $(TRUE) above must stay outside
7067c478bd9Sstevel@tonic-gate# of the export src markers.  The real setting for non source product builds
7077c478bd9Sstevel@tonic-gate# is inside the markers.
7087c478bd9Sstevel@tonic-gate# This is needed to reduce the amount of changes to Makefiles elsewhere
7097c478bd9Sstevel@tonic-gate# in the source tree (particularly in uts/{sparc,intel})
7107c478bd9Sstevel@tonic-gateELFSIGN_O =	$(ELFSIGN)
7117c478bd9Sstevel@tonic-gateELFSIGN_KEY =	$(SRC)/cmd/cmd-crypto/etc/keys/SUNWosnet
7127c478bd9Sstevel@tonic-gateELFSIGN_CERT=	$(SRC)/cmd/cmd-crypto/etc/certs/SUNWosnet
7137c478bd9Sstevel@tonic-gateELFSIGN_SEKEY =	$(SRC)/cmd/cmd-crypto/etc/keys/SUNWosnetSolaris
7147c478bd9Sstevel@tonic-gateELFSIGN_SECERT=	$(SRC)/cmd/cmd-crypto/etc/certs/SUNWosnetSolaris
7157c478bd9Sstevel@tonic-gateELFSIGN_CRYPTO=	$(ELFSIGN_O) sign $(ELFSIGN_FORMAT_OPTION) \
7167c478bd9Sstevel@tonic-gate			-k $(ELFSIGN_KEY) -c $(ELFSIGN_CERT) -e $@
7177c478bd9Sstevel@tonic-gateELFSIGN_OBJECT=	$(ELFSIGN_O) sign $(ELFSIGN_FORMAT_OPTION) \
7187c478bd9Sstevel@tonic-gate			-k $(ELFSIGN_SEKEY) -c $(ELFSIGN_SECERT) -e $@
7197c478bd9Sstevel@tonic-gate# EXPORT DELETE END
7207c478bd9Sstevel@tonic-gate
7217c478bd9Sstevel@tonic-gate# Rules (normally from make.rules) and macros which are used for post
7227c478bd9Sstevel@tonic-gate# processing files. Normally, these do stripping of the comment section
7237c478bd9Sstevel@tonic-gate# automatically.
7247c478bd9Sstevel@tonic-gate#    RELEASE_CM:	Should be editted to reflect the release.
7257c478bd9Sstevel@tonic-gate#    POST_PROCESS_O:	Post-processing for `.o' files.
7267c478bd9Sstevel@tonic-gate#    POST_PROCESS_A:	Post-processing for `.a' files (currently null).
7277c478bd9Sstevel@tonic-gate#    POST_PROCESS_SO:	Post-processing for `.so' files.
7287c478bd9Sstevel@tonic-gate#    POST_PROCESS:	Post-processing for executable files (no suffix).
7297c478bd9Sstevel@tonic-gate# Note that these macros are not completely generalized as they are to be
7307c478bd9Sstevel@tonic-gate# used with the file name to be processed following.
7317c478bd9Sstevel@tonic-gate#
7327c478bd9Sstevel@tonic-gate# It is left as an exercise to Release Engineering to embellish the generation
7337c478bd9Sstevel@tonic-gate# of the release comment string.
7347c478bd9Sstevel@tonic-gate#
7357c478bd9Sstevel@tonic-gate#	If this is a standard development build:
7367c478bd9Sstevel@tonic-gate#		compress the comment section (mcs -c)
7377c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
7387c478bd9Sstevel@tonic-gate#		add the development specific comment (mcs -a $(DEV_CM))
7397c478bd9Sstevel@tonic-gate#
7407c478bd9Sstevel@tonic-gate#	If this is an installation build:
7417c478bd9Sstevel@tonic-gate#		delete the comment section (mcs -d)
7427c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
7437c478bd9Sstevel@tonic-gate#		add the development specific comment (mcs -a $(DEV_CM))
7447c478bd9Sstevel@tonic-gate#
7457c478bd9Sstevel@tonic-gate#	If this is an release build:
7467c478bd9Sstevel@tonic-gate#		delete the comment section (mcs -d)
7477c478bd9Sstevel@tonic-gate#		add the standard comment (mcs -a $(RELEASE_CM))
7487c478bd9Sstevel@tonic-gate#
7497c478bd9Sstevel@tonic-gate#	The ONVERS macro sets the default value for the VERSION string
7507c478bd9Sstevel@tonic-gate#	within pkginfo.
7517c478bd9Sstevel@tonic-gate#
7527c478bd9Sstevel@tonic-gate# The following list of macros are used in the definition of RELEASE_CM
7537c478bd9Sstevel@tonic-gate# which is used to label all binaries in the build:
7547c478bd9Sstevel@tonic-gate#
7557c478bd9Sstevel@tonic-gate# 	RELEASE		Specific release of the build, eg: 5.2
7567c478bd9Sstevel@tonic-gate#	VERSION		Version of the build (alpha, beta, Generic)
7577c478bd9Sstevel@tonic-gate#	PATCHID		If this is a patch this value should contain
7587c478bd9Sstevel@tonic-gate#			the patchid value (eg: "Generic 100832-01"), otherwise
7597c478bd9Sstevel@tonic-gate#			it will be set to $(VERSION)
7607c478bd9Sstevel@tonic-gate#	RELEASE_DATE	Date of the Release Build
7617c478bd9Sstevel@tonic-gate#	PATCH_DATE	Date the patch was created, if this is blank it
7627c478bd9Sstevel@tonic-gate#			will default to the RELEASE_DATE
7637c478bd9Sstevel@tonic-gate#
7647c478bd9Sstevel@tonic-gateONVERS=		"11.11"
7657c478bd9Sstevel@tonic-gateRELEASE=	5.11
7667c478bd9Sstevel@tonic-gateVERSION=	SunOS Development
7677c478bd9Sstevel@tonic-gatePATCHID=	$(VERSION)
7687c478bd9Sstevel@tonic-gateRELEASE_DATE=	October 2007
7697c478bd9Sstevel@tonic-gatePATCH_DATE=	$(RELEASE_DATE)
7707c478bd9Sstevel@tonic-gateRELEASE_CM=	"@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
7717c478bd9Sstevel@tonic-gateDEV_CM=		"@($(POUND_SIGN))SunOS Internal Development: \
7727c478bd9Sstevel@tonic-gate`$(ECHO) $$LOGNAME` `date +%Y-%m-%d` `$(ECHO) [\`basename $$CODEMGR_WS\`]`"
7737c478bd9Sstevel@tonic-gate
7747c478bd9Sstevel@tonic-gatePROCESS_COMMENT=		   @?${MCS} -c -a $(RELEASE_CM) -a $(DEV_CM)
7757c478bd9Sstevel@tonic-gate$(STRIP_COMMENTS)PROCESS_COMMENT=  @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
7767c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PROCESS_COMMENT=   @?${MCS} -d -a $(RELEASE_CM)
7777c478bd9Sstevel@tonic-gate
7787c478bd9Sstevel@tonic-gateSTRIP_STABS=			   :
7797c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)STRIP_STABS=	   $(STRIP) -x $@
7807c478bd9Sstevel@tonic-gate
7817c478bd9Sstevel@tonic-gatePOST_PROCESS_O=		$(PROCESS_COMMENT) $@
7827c478bd9Sstevel@tonic-gatePOST_PROCESS_A=
7837c478bd9Sstevel@tonic-gatePOST_PROCESS_SO=	$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
7847c478bd9Sstevel@tonic-gate			$(ELFSIGN_OBJECT)
7857c478bd9Sstevel@tonic-gatePOST_PROCESS=		$(PROCESS_COMMENT) $@ ; $(ELFSIGN_OBJECT)
7867c478bd9Sstevel@tonic-gate
7877c478bd9Sstevel@tonic-gate#
7887c478bd9Sstevel@tonic-gate# The PKGDEFS macro points to the source directory containing the majority
7897c478bd9Sstevel@tonic-gate# of ON's package definitions plus Makefiles with general package creation
7907c478bd9Sstevel@tonic-gate# rules.
7917c478bd9Sstevel@tonic-gate#
7927c478bd9Sstevel@tonic-gate# PKGARCHIVE specifies the default location where packages should be
7937c478bd9Sstevel@tonic-gate# placed if built.
7947c478bd9Sstevel@tonic-gate#
7957c478bd9Sstevel@tonic-gatePKGDEFS=$(SRC)/pkgdefs
7967c478bd9Sstevel@tonic-gate$(RELEASE_BUILD)PKGARCHIVESUFFIX=	-nd
7977c478bd9Sstevel@tonic-gatePKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
7987c478bd9Sstevel@tonic-gate
7997c478bd9Sstevel@tonic-gate#	Default build rules which perform comment section post-processing.
8007c478bd9Sstevel@tonic-gate#
8017c478bd9Sstevel@tonic-gate.c:
8027c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $< $(LDLIBS)
8037c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
8047c478bd9Sstevel@tonic-gate.c.o:
8057c478bd9Sstevel@tonic-gate	$(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
8067c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
8077c478bd9Sstevel@tonic-gate.c.a:
8087c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $% $<
8097c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
8107c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
8117c478bd9Sstevel@tonic-gate	$(RM) $%
8127c478bd9Sstevel@tonic-gate.s.o:
8137c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
8147c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
8157c478bd9Sstevel@tonic-gate.s.a:
8167c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $% $<
8177c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
8187c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
8197c478bd9Sstevel@tonic-gate	$(RM) $%
8207c478bd9Sstevel@tonic-gate.cc:
8217c478bd9Sstevel@tonic-gate	$(LINK.cc) -o $@ $< $(LDLIBS)
8227c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
8237c478bd9Sstevel@tonic-gate.cc.o:
8247c478bd9Sstevel@tonic-gate	$(COMPILE.cc) $(OUTPUT_OPTION) $<
8257c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
8267c478bd9Sstevel@tonic-gate.cc.a:
8277c478bd9Sstevel@tonic-gate	$(COMPILE.cc) -o $% $<
8287c478bd9Sstevel@tonic-gate	$(AR) $(ARFLAGS) $@ $%
8297c478bd9Sstevel@tonic-gate	$(PROCESS_COMMENT) $%
8307c478bd9Sstevel@tonic-gate	$(RM) $%
8317c478bd9Sstevel@tonic-gate.y:
8327c478bd9Sstevel@tonic-gate	$(YACC.y) $<
8337c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ y.tab.c $(LDLIBS)
8347c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
8357c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
8367c478bd9Sstevel@tonic-gate.y.o:
8377c478bd9Sstevel@tonic-gate	$(YACC.y) $<
8387c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
8397c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
8407c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
8417c478bd9Sstevel@tonic-gate.l:
8427c478bd9Sstevel@tonic-gate	$(RM) $*.c
8437c478bd9Sstevel@tonic-gate	$(LEX.l) $< > $*.c
8447c478bd9Sstevel@tonic-gate	$(LINK.c) -o $@ $*.c -ll $(LDLIBS)
8457c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
8467c478bd9Sstevel@tonic-gate	$(RM) $*.c
8477c478bd9Sstevel@tonic-gate.l.o:
8487c478bd9Sstevel@tonic-gate	$(RM) $*.c
8497c478bd9Sstevel@tonic-gate	$(LEX.l) $< > $*.c
8507c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
8517c478bd9Sstevel@tonic-gate	$(POST_PROCESS_O)
8527c478bd9Sstevel@tonic-gate	$(RM) $*.c
8537c478bd9Sstevel@tonic-gate
8547c478bd9Sstevel@tonic-gate.java.class:
8557c478bd9Sstevel@tonic-gate	$(COMPILE.java) $<
8567c478bd9Sstevel@tonic-gate
8577c478bd9Sstevel@tonic-gate#
8587c478bd9Sstevel@tonic-gate# Rules to create message catalogue files from .sh, .c, .y, and .l files.
8597c478bd9Sstevel@tonic-gate# For .sh files, we extract all gettext strings with sed(1) (being careful
8607c478bd9Sstevel@tonic-gate# to permit multiple gettext strings on the same line), weed out the dups,
8617c478bd9Sstevel@tonic-gate# and build the catalogue with awk(1).
8627c478bd9Sstevel@tonic-gate#
8637c478bd9Sstevel@tonic-gate
8647c478bd9Sstevel@tonic-gate.sh.po:
8657c478bd9Sstevel@tonic-gate	$(SED) -n -e ":a" 					\
8667c478bd9Sstevel@tonic-gate		  -e "h" 					\
8677c478bd9Sstevel@tonic-gate		  -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p"	\
8687c478bd9Sstevel@tonic-gate		  -e "x"					\
8697c478bd9Sstevel@tonic-gate		  -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/"	\
8707c478bd9Sstevel@tonic-gate		  -e "t a"					\
8717c478bd9Sstevel@tonic-gate	       $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
8727c478bd9Sstevel@tonic-gate
8737c478bd9Sstevel@tonic-gate#
8747c478bd9Sstevel@tonic-gate# When using xgettext, we want messages to go to the default domain,
8757c478bd9Sstevel@tonic-gate# rather than the specified one.  This special version of the
8767c478bd9Sstevel@tonic-gate# COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
8777c478bd9Sstevel@tonic-gate# causing xgettext to put all messages into the default domain.
8787c478bd9Sstevel@tonic-gate#
8797c478bd9Sstevel@tonic-gateCPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
8807c478bd9Sstevel@tonic-gate
8817c478bd9Sstevel@tonic-gate.c.i:
8827c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $@
8837c478bd9Sstevel@tonic-gate
8847c478bd9Sstevel@tonic-gate.h.i:
8857c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $@
8867c478bd9Sstevel@tonic-gate
8877c478bd9Sstevel@tonic-gate.y.i:
8887c478bd9Sstevel@tonic-gate	$(YACC) -d $<
8897c478bd9Sstevel@tonic-gate	$(CPPFORPO) y.tab.c  > $@
8907c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
8917c478bd9Sstevel@tonic-gate
8927c478bd9Sstevel@tonic-gate.l.i:
8937c478bd9Sstevel@tonic-gate	$(LEX) $<
8947c478bd9Sstevel@tonic-gate	$(CPPFORPO) lex.yy.c  > $@
8957c478bd9Sstevel@tonic-gate	$(RM) lex.yy.c
8967c478bd9Sstevel@tonic-gate
8977c478bd9Sstevel@tonic-gate.c.po:
8987c478bd9Sstevel@tonic-gate	$(CPPFORPO) $< > $<.i
8997c478bd9Sstevel@tonic-gate	$(BUILD.po)
9007c478bd9Sstevel@tonic-gate
9017c478bd9Sstevel@tonic-gate.y.po:
9027c478bd9Sstevel@tonic-gate	$(YACC) -d $<
9037c478bd9Sstevel@tonic-gate	$(CPPFORPO) y.tab.c  > $<.i
9047c478bd9Sstevel@tonic-gate	$(BUILD.po)
9057c478bd9Sstevel@tonic-gate	$(RM) y.tab.c
9067c478bd9Sstevel@tonic-gate
9077c478bd9Sstevel@tonic-gate.l.po:
9087c478bd9Sstevel@tonic-gate	$(LEX) $<
9097c478bd9Sstevel@tonic-gate	$(CPPFORPO) lex.yy.c  > $<.i
9107c478bd9Sstevel@tonic-gate	$(BUILD.po)
9117c478bd9Sstevel@tonic-gate	$(RM) lex.yy.c
9127c478bd9Sstevel@tonic-gate
9137c478bd9Sstevel@tonic-gate#
9147c478bd9Sstevel@tonic-gate# Rules to perform stylistic checks
9157c478bd9Sstevel@tonic-gate#
9167c478bd9Sstevel@tonic-gate.SUFFIXES: $(SUFFIXES) .x .xml .check .xmlchk
9177c478bd9Sstevel@tonic-gate
9187c478bd9Sstevel@tonic-gate.h.check:
9197c478bd9Sstevel@tonic-gate	$(DOT_H_CHECK)
9207c478bd9Sstevel@tonic-gate
9217c478bd9Sstevel@tonic-gate.x.check:
9227c478bd9Sstevel@tonic-gate	$(DOT_X_CHECK)
9237c478bd9Sstevel@tonic-gate
9247c478bd9Sstevel@tonic-gate.xml.xmlchk:
9257c478bd9Sstevel@tonic-gate	$(MANIFEST_CHECK)
9267c478bd9Sstevel@tonic-gate
9277c478bd9Sstevel@tonic-gate#
9287c478bd9Sstevel@tonic-gate# Rules to process ONC+ Source partial files
9297c478bd9Sstevel@tonic-gate#
9307c478bd9Sstevel@tonic-gate%_onc_plus:	%
9317c478bd9Sstevel@tonic-gate	@$(ECHO) "extracting code from $< ... "
9327c478bd9Sstevel@tonic-gate	sed -n -e '/ONC_PLUS EXTRACT START/,/ONC_PLUS EXTRACT END/p' $<  > $@
933