xref: /titanic_52/usr/src/Makefile.master (revision ee4e24edd0ef9555c11f6ddc0a08fcb87f401944)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved.
24# Copyright (c) 2012 by Delphix. All rights reserved.
25# Copyright 2014 Garrett D'Amore <garrett@damore.org>
26# Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
27# Copyright 2015 Gary Mills
28# Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
29# Copyright 2016 Toomas Soome <tsoome@me.com>
30#
31
32#
33# Makefile.master, global definitions for system source
34#
35ROOT=		/proto
36
37#
38# Adjunct root, containing an additional proto area to be used for headers
39# and libraries.
40#
41ADJUNCT_PROTO=
42
43#
44# Adjunct for building things that run on the build machine.
45#
46NATIVE_ADJUNCT=	/usr
47
48#
49# RELEASE_BUILD should be cleared for final release builds.
50# NOT_RELEASE_BUILD is exactly what the name implies.
51#
52# __GNUC toggles the building of ON components using gcc and related tools.
53# Normally set to `#', set it to `' to do gcc build.
54#
55# The declaration POUND_SIGN is always '#'. This is needed to get around the
56# make feature that '#' is always a comment delimiter, even when escaped or
57# quoted. We use this macro expansion method to get POUND_SIGN rather than
58# always breaking out a shell because the general case can cause a noticable
59# slowdown in build times when so many Makefiles include Makefile.master.
60#
61# While the majority of users are expected to override the setting below
62# with an env file (via nightly or bldenv), if you aren't building that way
63# (ie, you're using "ws" or some other bootstrapping method) then you need
64# this definition in order to avoid the subshell invocation mentioned above.
65#
66
67PRE_POUND=				pre\#
68POUND_SIGN=				$(PRE_POUND:pre\%=%)
69
70NOT_RELEASE_BUILD=
71RELEASE_BUILD=				$(POUND_SIGN)
72$(RELEASE_BUILD)NOT_RELEASE_BUILD=	$(POUND_SIGN)
73PATCH_BUILD=				$(POUND_SIGN)
74
75# SPARC_BLD is '#' for an Intel build.
76# INTEL_BLD is '#' for a Sparc build.
77SPARC_BLD_1=    $(MACH:i386=$(POUND_SIGN))
78SPARC_BLD=      $(SPARC_BLD_1:sparc=)
79INTEL_BLD_1=    $(MACH:sparc=$(POUND_SIGN))
80INTEL_BLD=      $(INTEL_BLD_1:i386=)
81
82# The variables below control the compilers used during the build.
83# There are a number of permutations.
84#
85# __GNUC and __SUNC control (and indicate) the primary compiler.  Whichever
86# one is not POUND_SIGN is the primary, with the other as the shadow.  They
87# may also be used to control entirely compiler-specific Makefile assignments.
88# __GNUC and GCC are the default.
89#
90# __GNUC64 indicates that the 64bit build should use the GNU C compiler.
91# There is no Sun C analogue.
92#
93# The following version-specific options are operative regardless of which
94# compiler is primary, and control the versions of the given compilers to be
95# used.  They also allow compiler-version specific Makefile fragments.
96#
97
98__SUNC=			$(POUND_SIGN)
99$(__SUNC)__GNUC=	$(POUND_SIGN)
100__GNUC64=		$(__GNUC)
101
102# Allow build-time "configuration" to enable or disable some things.
103# The default is POUND_SIGN, meaning "not enabled". If the environment
104# passes in an override like ENABLE_SMB_PRINTING= (empty) that will
105# uncomment things in the lower Makefiles to enable the feature.
106ENABLE_SMB_PRINTING=	$(POUND_SIGN)
107
108# CLOSED is the root of the tree that contains source which isn't released
109# as open source
110CLOSED=		$(SRC)/../closed
111
112# BUILD_TOOLS is the root of all tools including compilers.
113# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
114
115BUILD_TOOLS=		/ws/onnv-tools
116ONBLD_TOOLS=		$(BUILD_TOOLS)/onbld
117
118# define runtime JAVA_HOME, primarily for cmd/pools/poold
119JAVA_HOME=	/usr/java
120# define buildtime JAVA_ROOT
121JAVA_ROOT=	/usr/java
122# define to build with JAVA 8
123BLD_JAVA_8=	$(POUND_SIGN)
124
125GCC_ROOT=	/opt/gcc/4.4.4
126GCCLIBDIR=	$(GCC_ROOT)/lib
127GCCLIBDIR64=	$(GCC_ROOT)/lib/$(MACH64)
128
129DOCBOOK_XSL_ROOT=	/usr/share/sgml/docbook/xsl-stylesheets
130
131RPCGEN=		/usr/bin/rpcgen
132STABS=		$(ONBLD_TOOLS)/bin/$(MACH)/stabs
133ELFEXTRACT=	$(ONBLD_TOOLS)/bin/$(MACH)/elfextract
134MBH_PATCH=	$(ONBLD_TOOLS)/bin/$(MACH)/mbh_patch
135BTXLD=		$(ONBLD_TOOLS)/bin/$(MACH)/btxld
136ECHO=		echo
137INS=		install
138TRUE=		true
139SYMLINK=	/usr/bin/ln -s
140LN=		/usr/bin/ln
141CHMOD=		/usr/bin/chmod
142MV=		/usr/bin/mv -f
143RM=		/usr/bin/rm -f
144CUT=		/usr/bin/cut
145NM=		/usr/ccs/bin/nm
146DIFF=		/usr/bin/diff
147GREP=		/usr/bin/grep
148EGREP=		/usr/bin/egrep
149ELFWRAP=	/usr/bin/elfwrap
150KSH93=		/usr/bin/ksh93
151SED=		/usr/bin/sed
152AWK=		/usr/bin/nawk
153CP=		/usr/bin/cp -f
154MCS=		/usr/ccs/bin/mcs
155CAT=            /usr/bin/cat
156ELFDUMP=	/usr/ccs/bin/elfdump
157M4=		/usr/bin/m4
158STRIP=		/usr/ccs/bin/strip
159LEX=		/usr/ccs/bin/lex
160FLEX=		/usr/bin/flex
161YACC=		/usr/ccs/bin/yacc
162CPP=		/usr/lib/cpp
163JAVAC=		$(JAVA_ROOT)/bin/javac
164JAVAH=		$(JAVA_ROOT)/bin/javah
165JAVADOC=	$(JAVA_ROOT)/bin/javadoc
166RMIC=		$(JAVA_ROOT)/bin/rmic
167JAR=		$(JAVA_ROOT)/bin/jar
168CTFCONVERT=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
169CTFDIFF=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfdiff
170CTFMERGE=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
171CTFSTABS=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
172CTFSTRIP=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstrip
173NDRGEN=		$(ONBLD_TOOLS)/bin/$(MACH)/ndrgen
174GENOFFSETS=	$(ONBLD_TOOLS)/bin/genoffsets
175XREF=		$(ONBLD_TOOLS)/bin/xref
176FIND=		/usr/bin/find
177PERL=		/usr/bin/perl
178PERL_VERSION=	5.10.0
179PERL_PKGVERS=	-510
180PERL_ARCH =		i86pc-solaris-64int
181$(SPARC_BLD)PERL_ARCH =	sun4-solaris-64int
182PYTHON_VERSION=	2.7
183PYTHON_PKGVERS=	-27
184PYTHON=		/usr/bin/python$(PYTHON_VERSION)
185SORT=		/usr/bin/sort
186TR=		/usr/bin/tr
187TOUCH=		/usr/bin/touch
188WC=		/usr/bin/wc
189XARGS=		/usr/bin/xargs
190ELFEDIT=	/usr/bin/elfedit
191ELFSIGN=	/usr/bin/elfsign
192DTRACE=		/usr/sbin/dtrace -xnolibs
193UNIQ=		/usr/bin/uniq
194TAR=		/usr/bin/tar
195ASTBINDIR=	/usr/ast/bin
196MSGCC=		$(ASTBINDIR)/msgcc
197MSGFMT=		/usr/bin/msgfmt -s
198ZIC=		$(ONBLD_TOOLS)/bin/$(MACH)/zic
199CPCGEN=		$(ONBLD_TOOLS)/bin/$(MACH)/cpcgen
200
201FILEMODE=	644
202DIRMODE=	755
203
204# Declare that nothing should be built in parallel.
205# Individual Makefiles can use the .PARALLEL target to declare otherwise.
206.NO_PARALLEL:
207
208# For stylistic checks
209#
210# Note that the X and C checks are not used at this time and may need
211# modification when they are actually used.
212#
213CSTYLE=		$(ONBLD_TOOLS)/bin/cstyle
214CSTYLE_TAIL=
215HDRCHK=		$(ONBLD_TOOLS)/bin/hdrchk
216HDRCHK_TAIL=
217JSTYLE=		$(ONBLD_TOOLS)/bin/jstyle
218
219DOT_H_CHECK=	\
220	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
221	$(HDRCHK) $< $(HDRCHK_TAIL)
222
223DOT_X_CHECK=	\
224	@$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
225	$(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
226
227DOT_C_CHECK=	\
228	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
229
230MANIFEST_CHECK=	\
231	@$(ECHO) "checking $<"; \
232	SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
233	SVCCFG_REPOSITORY=$(SRC)/cmd/svc/seed/global.db \
234	SVCCFG_CONFIGD_PATH=$(SRC)/cmd/svc/configd/svc.configd-native \
235	$(SRC)/cmd/svc/svccfg/svccfg-native validate $<
236
237INS.file=	$(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
238INS.dir=	$(INS) -s -d -m $(DIRMODE) $@
239# installs and renames at once
240#
241INS.rename=	$(INS.file); $(MV) $(@D)/$(<F) $@
242
243# install a link
244INSLINKTARGET=	$<
245INS.link=	$(RM) $@; $(LN) $(INSLINKTARGET) $@
246INS.symlink=	$(RM) $@; $(SYMLINK) $(INSLINKTARGET) $@
247
248#
249# Python bakes the mtime of the .py file into the compiled .pyc and
250# rebuilds if the baked-in mtime != the mtime of the source file
251# (rather than only if it's less than), thus when installing python
252# files we must make certain to not adjust the mtime of the source
253# (.py) file.
254#
255INS.pyfile=	$(RM) $@; $(SED) -e "1s:^\#!@PYTHON@:\#!/usr/bin/python$(PYTHON_VERSION):" < $< > $@; $(CHMOD) $(FILEMODE) $@; $(TOUCH) -r $< $@
256
257# MACH must be set in the shell environment per uname -p on the build host
258# More specific architecture variables should be set in lower makefiles.
259#
260# MACH64 is derived from MACH, and BUILD64 is set to `#' for
261# architectures on which we do not build 64-bit versions.
262# (There are no such architectures at the moment.)
263#
264# Set BUILD64=# in the environment to disable 64-bit amd64
265# builds on i386 machines.
266
267MACH64_1=	$(MACH:sparc=sparcv9)
268MACH64=		$(MACH64_1:i386=amd64)
269
270MACH32_1=	$(MACH:sparc=sparcv7)
271MACH32=		$(MACH32_1:i386=i86)
272
273sparc_BUILD64=
274i386_BUILD64=
275BUILD64=	$($(MACH)_BUILD64)
276
277#
278# C compiler mode. Future compilers may change the default on us,
279# so force extended ANSI mode globally. Lower level makefiles can
280# override this by setting CCMODE.
281#
282CCMODE=			-Xa
283CCMODE64=		-Xa
284
285#
286# C compiler verbose mode. This is so we can enable it globally,
287# but turn it off in the lower level makefiles of things we cannot
288# (or aren't going to) fix.
289#
290CCVERBOSE=		-v
291
292# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
293# from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
294V9ABIWARN=
295
296# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
297# symbols (used to detect conflicts between objects that use global registers)
298# we disable this now for safety, and because genunix doesn't link with
299# this feature (the v9 default) enabled.
300#
301# REGSYM is separate since the C++ driver syntax is different.
302CCREGSYM=		-Wc,-Qiselect-regsym=0
303CCCREGSYM=		-Qoption cg -Qiselect-regsym=0
304
305# Prevent the removal of static symbols by the SPARC code generator (cg).
306# The x86 code generator (ube) does not remove such symbols and as such
307# using this workaround is not applicable for x86.
308#
309CCSTATICSYM=		-Wc,-Qassembler-ounrefsym=0
310#
311# generate 32-bit addresses in the v9 kernel. Saves memory.
312CCABS32=		-Wc,-xcode=abs32
313#
314# generate v9 code which tolerates callers using the v7 ABI, for the sake of
315# system calls.
316CC32BITCALLERS=		-_gcc=-massume-32bit-callers
317
318# GCC, especially, is increasingly beginning to auto-inline functions and
319# sadly does so separately not under the general -fno-inline-functions
320# Additionally, we wish to prevent optimisations which cause GCC to clone
321# functions -- in particular, these may cause unhelpful symbols to be
322# emitted instead of function names
323CCNOAUTOINLINE= -_gcc=-fno-inline-small-functions \
324	-_gcc=-fno-inline-functions-called-once \
325	-_gcc=-fno-ipa-cp
326
327# One optimization the compiler might perform is to turn this:
328#	#pragma weak foo
329#	extern int foo;
330#	if (&foo)
331#		foo = 5;
332# into
333#	foo = 5;
334# Since we do some of this (foo might be referenced in common kernel code
335# but provided only for some cpu modules or platforms), we disable this
336# optimization.
337#
338sparc_CCUNBOUND	= -Wd,-xsafe=unboundsym
339i386_CCUNBOUND	=
340CCUNBOUND	= $($(MACH)_CCUNBOUND)
341
342#
343# compiler '-xarch' flag. This is here to centralize it and make it
344# overridable for testing.
345sparc_XARCH=	-m32
346sparcv9_XARCH=	-m64
347i386_XARCH=
348amd64_XARCH=	-m64 -Ui386 -U__i386
349
350# assembler '-xarch' flag.  Different from compiler '-xarch' flag.
351sparc_AS_XARCH=		-xarch=v8plus
352sparcv9_AS_XARCH=	-xarch=v9
353i386_AS_XARCH=
354amd64_AS_XARCH=		-xarch=amd64 -P -Ui386 -U__i386
355
356#
357# These flags define what we need to be 'standalone' i.e. -not- part
358# of the rather more cosy userland environment.  This basically means
359# the kernel.
360#
361# XX64	future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
362#
363sparc_STAND_FLAGS=	-_gcc=-ffreestanding
364sparcv9_STAND_FLAGS=	-_gcc=-ffreestanding
365# Disabling MMX also disables 3DNow, disabling SSE also disables all later
366# additions to SSE (SSE2, AVX ,etc.)
367NO_SIMD=		-_gcc=-mno-mmx -_gcc=-mno-sse
368i386_STAND_FLAGS=	-_gcc=-ffreestanding $(NO_SIMD)
369amd64_STAND_FLAGS=	-xmodel=kernel $(NO_SIMD)
370
371SAVEARGS=		-Wu,-save_args
372amd64_STAND_FLAGS	+= $(SAVEARGS)
373
374STAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
375STAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
376
377#
378# disable the incremental linker
379ILDOFF=			-xildoff
380#
381XDEPEND=		-xdepend
382XFFLAG=			-xF=%all
383XESS=			-xs
384XSTRCONST=		-xstrconst
385
386#
387# turn warnings into errors (C)
388CERRWARN = -errtags=yes -errwarn=%all
389CERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
390CERRWARN += -erroff=E_STATEMENT_NOT_REACHED
391
392CERRWARN += -_gcc=-Wno-missing-braces
393CERRWARN += -_gcc=-Wno-sign-compare
394CERRWARN += -_gcc=-Wno-unknown-pragmas
395CERRWARN += -_gcc=-Wno-unused-parameter
396CERRWARN += -_gcc=-Wno-missing-field-initializers
397
398# Unfortunately, this option can misfire very easily and unfixably.
399CERRWARN +=	-_gcc=-Wno-array-bounds
400
401# DEBUG v. -nd make for frequent unused variables, empty conditions, etc. in
402# -nd builds
403$(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-unused
404$(RELEASE_BUILD)CERRWARN += -_gcc=-Wno-empty-body
405
406#
407# turn warnings into errors (C++)
408CCERRWARN=		-xwe
409
410# C99 mode
411C99_ENABLE=	-xc99=%all
412C99_DISABLE=	-xc99=%none
413C99MODE=	$(C99_DISABLE)
414C99LMODE=	$(C99MODE:-xc99%=-Xc99%)
415
416# In most places, assignments to these macros should be appended with +=
417# (CPPFLAGS.first allows values to be prepended to CPPFLAGS).
418sparc_CFLAGS=	$(sparc_XARCH) $(CCSTATICSYM)
419sparcv9_CFLAGS=	$(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \
420		$(CCSTATICSYM)
421i386_CFLAGS=	$(i386_XARCH)
422amd64_CFLAGS=	$(amd64_XARCH)
423
424sparc_ASFLAGS=	$(sparc_AS_XARCH)
425sparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
426i386_ASFLAGS=	$(i386_AS_XARCH)
427amd64_ASFLAGS=	$(amd64_AS_XARCH)
428
429#
430sparc_COPTFLAG=		-xO3
431sparcv9_COPTFLAG=	-xO3
432i386_COPTFLAG=		-O
433amd64_COPTFLAG=		-xO3
434
435COPTFLAG= $($(MACH)_COPTFLAG)
436COPTFLAG64= $($(MACH64)_COPTFLAG)
437
438# When -g is used, the compiler globalizes static objects
439# (gives them a unique prefix). Disable that.
440CNOGLOBAL= -W0,-noglobal
441
442# Direct the Sun Studio compiler to use a static globalization prefix based on the
443# name of the module rather than something unique. Otherwise, objects
444# will not build deterministically, as subsequent compilations of identical
445# source will yeild objects that always look different.
446#
447# In the same spirit, this will also remove the date from the N_OPT stab.
448CGLOBALSTATIC= -W0,-xglobalstatic
449
450# Sometimes we want all symbols and types in debugging information even
451# if they aren't used.
452CALLSYMS=	-W0,-xdbggen=no%usedonly
453
454#
455# Default debug format for Sun Studio 11 is dwarf, so force it to
456# generate stabs.
457#
458DEBUGFORMAT=	-xdebugformat=stabs
459
460#
461# Flags used to build in debug mode for ctf generation.  Bugs in the Devpro
462# compilers currently prevent us from building with cc-emitted DWARF.
463#
464CTF_FLAGS_sparc	= -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
465CTF_FLAGS_i386	= -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
466
467CTF_FLAGS_sparcv9	= $(CTF_FLAGS_sparc)
468CTF_FLAGS_amd64		= $(CTF_FLAGS_i386)
469
470# Sun Studio produces broken userland code when saving arguments.
471$(__GNUC)CTF_FLAGS_amd64 += $(SAVEARGS)
472
473CTF_FLAGS_32	= $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT)
474CTF_FLAGS_64	= $(CTF_FLAGS_$(MACH64)) $(DEBUGFORMAT)
475CTF_FLAGS	= $(CTF_FLAGS_32)
476
477#
478# Flags used with genoffsets
479#
480GOFLAGS = -_noecho \
481	$(CALLSYMS) \
482	$(CDWARFSTR)
483
484OFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
485	$(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
486
487OFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
488	$(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
489
490#
491# tradeoff time for space (smaller is better)
492#
493sparc_SPACEFLAG		= -xspace -W0,-Lt
494sparcv9_SPACEFLAG	= -xspace -W0,-Lt
495i386_SPACEFLAG		= -xspace
496amd64_SPACEFLAG		=
497
498SPACEFLAG		= $($(MACH)_SPACEFLAG)
499SPACEFLAG64		= $($(MACH64)_SPACEFLAG)
500
501#
502# The Sun Studio 11 compiler has changed the behaviour of integer
503# wrap arounds and so a flag is needed to use the legacy behaviour
504# (without this flag panics/hangs could be exposed within the source).
505#
506sparc_IROPTFLAG		= -W2,-xwrap_int
507sparcv9_IROPTFLAG	= -W2,-xwrap_int
508i386_IROPTFLAG		=
509amd64_IROPTFLAG		=
510
511IROPTFLAG		= $($(MACH)_IROPTFLAG)
512IROPTFLAG64		= $($(MACH64)_IROPTFLAG)
513
514sparc_XREGSFLAG		= -xregs=no%appl
515sparcv9_XREGSFLAG	= -xregs=no%appl
516i386_XREGSFLAG		=
517amd64_XREGSFLAG		=
518
519XREGSFLAG		= $($(MACH)_XREGSFLAG)
520XREGSFLAG64		= $($(MACH64)_XREGSFLAG)
521
522# dmake SOURCEDEBUG=yes ... enables source-level debugging information, and
523# avoids stripping it.
524SOURCEDEBUG	= $(POUND_SIGN)
525SRCDBGBLD	= $(SOURCEDEBUG:yes=)
526
527#
528# These variables are intended ONLY for use by developers to safely pass extra
529# flags to the compilers without unintentionally overriding Makefile-set
530# flags.  They should NEVER be set to any value in a Makefile.
531#
532# They come last in the associated FLAGS variable such that they can
533# explicitly override things if necessary, there are gaps in this, but it's
534# the best we can manage.
535#
536CUSERFLAGS		=
537CUSERFLAGS64		= $(CUSERFLAGS)
538CCUSERFLAGS		=
539CCUSERFLAGS64		= $(CCUSERFLAGS)
540
541CSOURCEDEBUGFLAGS	=
542CCSOURCEDEBUGFLAGS	=
543$(SRCDBGBLD)CSOURCEDEBUGFLAGS	= -g -xs
544$(SRCDBGBLD)CCSOURCEDEBUGFLAGS	= -g -xs
545
546CFLAGS=         $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
547		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \
548		$(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
549		$(CUSERFLAGS)
550CFLAGS64=       $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
551		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \
552		$(CGLOBALSTATIC) $(CCNOAUTOINLINE) $(CSOURCEDEBUGFLAGS) \
553		$(CUSERFLAGS64)
554#
555# Flags that are used to build parts of the code that are subsequently
556# run on the build machine (also known as the NATIVE_BUILD).
557#
558NATIVE_CFLAGS=	$(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
559		$(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \
560		$(IROPTFLAG) $(CGLOBALSTATIC) $(CCNOAUTOINLINE) \
561		$(CSOURCEDEBUGFLAGS) $(CUSERFLAGS)
562
563DTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\"	# For messaging.
564DTS_ERRNO=-D_TS_ERRNO
565CPPFLAGS.first=	# Please keep empty.  Only lower makefiles should set this.
566CPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
567	$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4) \
568	$(ADJUNCT_PROTO:%=-I%/usr/include)
569CPPFLAGS.native=$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) \
570		$(ENVCPPFLAGS4) -I$(NATIVE_ADJUNCT)/include
571CPPFLAGS=	$(CPPFLAGS.first) $(CPPFLAGS.master)
572AS_CPPFLAGS=	$(CPPFLAGS.first) $(CPPFLAGS.master)
573JAVAFLAGS=	-source 1.6 -target 1.6 -Xlint:deprecation,-options
574
575#
576# For source message catalogue
577#
578.SUFFIXES: $(SUFFIXES) .i .po
579MSGROOT= $(ROOT)/catalog
580MSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
581MSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
582DCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
583DCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
584
585CLOBBERFILES += $(POFILE) $(POFILES)
586COMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
587XGETTEXT= /usr/bin/xgettext
588XGETFLAGS= -c TRANSLATION_NOTE
589GNUXGETTEXT= /usr/gnu/bin/xgettext
590GNUXGETFLAGS= --add-comments=TRANSLATION_NOTE --keyword=_ \
591	--strict --no-location --omit-header
592BUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
593	$(RM)	$@ ;\
594	$(SED) "/^domain/d" < $(<F).po > $@ ;\
595	$(RM) $(<F).po $<.i
596
597#
598# This is overwritten by local Makefile when PROG is a list.
599#
600POFILE= $(PROG).po
601
602sparc_CCFLAGS=		-cg92 -compat=4 \
603			-Qoption ccfe -messages=no%anachronism \
604			$(CCERRWARN)
605sparcv9_CCFLAGS=	$(sparcv9_XARCH) -dalign -compat=5 \
606			-Qoption ccfe -messages=no%anachronism \
607			-Qoption ccfe -features=no%conststrings \
608			$(CCCREGSYM) \
609			$(CCERRWARN)
610i386_CCFLAGS=		-compat=4 \
611			-Qoption ccfe -messages=no%anachronism \
612			-Qoption ccfe -features=no%conststrings \
613			$(CCERRWARN)
614amd64_CCFLAGS=		$(amd64_XARCH) -compat=5 \
615			-Qoption ccfe -messages=no%anachronism \
616			-Qoption ccfe -features=no%conststrings \
617			$(CCERRWARN)
618
619sparc_CCOPTFLAG=	-O
620sparcv9_CCOPTFLAG=	-O
621i386_CCOPTFLAG=		-O
622amd64_CCOPTFLAG=	-O
623
624CCOPTFLAG=	$($(MACH)_CCOPTFLAG)
625CCOPTFLAG64=	$($(MACH64)_CCOPTFLAG)
626CCFLAGS=	$(CCOPTFLAG) $($(MACH)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
627		$(CCUSERFLAGS)
628CCFLAGS64=	$(CCOPTFLAG64) $($(MACH64)_CCFLAGS) $(CCSOURCEDEBUGFLAGS) \
629		$(CCUSERFLAGS64)
630
631#
632#
633#
634ELFWRAP_FLAGS	=
635ELFWRAP_FLAGS64	=	-64
636
637#
638# Various mapfiles that are used throughout the build, and delivered to
639# /usr/lib/ld.
640#
641MAPFILE.NED_i386 =	$(SRC)/common/mapfiles/common/map.noexdata
642MAPFILE.NED_sparc =
643MAPFILE.NED =		$(MAPFILE.NED_$(MACH))
644MAPFILE.PGA =		$(SRC)/common/mapfiles/common/map.pagealign
645MAPFILE.NES =		$(SRC)/common/mapfiles/common/map.noexstk
646MAPFILE.FLT =		$(SRC)/common/mapfiles/common/map.filter
647MAPFILE.LEX =		$(SRC)/common/mapfiles/common/map.lex.yy
648
649#
650# Generated mapfiles that are compiler specific, and used throughout the
651# build.  These mapfiles are not delivered in /usr/lib/ld.
652#
653MAPFILE.NGB_sparc=	$(SRC)/common/mapfiles/gen/sparc_cc_map.noexeglobs
654$(__GNUC64)MAPFILE.NGB_sparc= \
655			$(SRC)/common/mapfiles/gen/sparc_gcc_map.noexeglobs
656MAPFILE.NGB_sparcv9=	$(SRC)/common/mapfiles/gen/sparcv9_cc_map.noexeglobs
657$(__GNUC64)MAPFILE.NGB_sparcv9= \
658			$(SRC)/common/mapfiles/gen/sparcv9_gcc_map.noexeglobs
659MAPFILE.NGB_i386=	$(SRC)/common/mapfiles/gen/i386_cc_map.noexeglobs
660$(__GNUC64)MAPFILE.NGB_i386= \
661			$(SRC)/common/mapfiles/gen/i386_gcc_map.noexeglobs
662MAPFILE.NGB_amd64=	$(SRC)/common/mapfiles/gen/amd64_cc_map.noexeglobs
663$(__GNUC64)MAPFILE.NGB_amd64= \
664			$(SRC)/common/mapfiles/gen/amd64_gcc_map.noexeglobs
665MAPFILE.NGB =		$(MAPFILE.NGB_$(MACH))
666
667#
668# A generic interface mapfile name, used by various dynamic objects to define
669# the interfaces and interposers the object must export.
670#
671MAPFILE.INT =		mapfile-intf
672
673#
674# LDLIBS32 and LDLIBS64 can be set in the environment to override the following
675# assignments.
676#
677# These environment settings make sure that no libraries are searched outside
678# of the local workspace proto area:
679#	LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
680#	LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
681#
682LDLIBS32 =	$(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
683LDLIBS32 +=	$(ADJUNCT_PROTO:%=-L%/usr/lib -L%/lib)
684LDLIBS.cmd = 	$(LDLIBS32)
685LDLIBS.lib =	$(LDLIBS32)
686
687LDLIBS64 =	$(ENVLDLIBS1:%=%/$(MACH64)) \
688		$(ENVLDLIBS2:%=%/$(MACH64)) \
689		$(ENVLDLIBS3:%=%/$(MACH64))
690LDLIBS64 +=     $(ADJUNCT_PROTO:%=-L%/usr/lib/$(MACH64) -L%/lib/$(MACH64))
691
692#
693# Define compilation macros.
694#
695COMPILE.c=	$(CC) $(CFLAGS) $(CPPFLAGS) -c
696COMPILE64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) -c
697COMPILE.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) -c
698COMPILE64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
699COMPILE.s=	$(AS) $(ASFLAGS) $(AS_CPPFLAGS)
700COMPILE64.s=	$(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
701COMPILE.d=	$(DTRACE) -G -32
702COMPILE64.d=	$(DTRACE) -G -64
703COMPILE.b=	$(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
704COMPILE64.b=	$(ELFWRAP) $(ELFWRAP_FLAGS$(CLASS))
705
706CLASSPATH=	.
707COMPILE.java=	$(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
708
709#
710# Link time macros
711#
712CCNEEDED		= -lC
713CCEXTNEEDED		= -lCrun -lCstd
714$(__GNUC)CCNEEDED	= -L$(GCCLIBDIR) -lstdc++ -lgcc_s
715$(__GNUC)CCEXTNEEDED	= $(CCNEEDED)
716
717LINK.c=		$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
718LINK64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
719NORUNPATH=	-norunpath -nolib
720LINK.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
721		$(LDFLAGS) $(CCNEEDED)
722LINK64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
723		$(LDFLAGS) $(CCNEEDED)
724
725#
726# lint macros
727#
728# Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
729# ON is built with a version of lint that has the fix for 4484186.
730#
731ALWAYS_LINT_DEFS =	-errtags=yes -s
732ALWAYS_LINT_DEFS +=	-erroff=E_PTRDIFF_OVERFLOW
733ALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_NARROW_CONV
734ALWAYS_LINT_DEFS +=	-U__PRAGMA_REDEFINE_EXTNAME
735ALWAYS_LINT_DEFS +=	$(C99LMODE)
736ALWAYS_LINT_DEFS +=	-errsecurity=$(SECLEVEL)
737ALWAYS_LINT_DEFS +=	-erroff=E_SEC_CREAT_WITHOUT_EXCL
738ALWAYS_LINT_DEFS +=	-erroff=E_SEC_FORBIDDEN_WARN_CREAT
739# XX64 -- really only needed for amd64 lint
740ALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_INT_TO_SMALL_INT
741ALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_CONST_TO_SMALL_INT
742ALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_TO_SMALL_INT
743ALWAYS_LINT_DEFS +=	-erroff=E_CAST_TO_PTR_FROM_INT
744ALWAYS_LINT_DEFS +=	-erroff=E_COMP_INT_WITH_LARGE_INT
745ALWAYS_LINT_DEFS +=	-erroff=E_INTEGRAL_CONST_EXP_EXPECTED
746ALWAYS_LINT_DEFS +=	-erroff=E_PASS_INT_TO_SMALL_INT
747ALWAYS_LINT_DEFS +=	-erroff=E_PTR_CONV_LOSES_BITS
748
749# This forces lint to pick up note.h and sys/note.h from Devpro rather than
750# from the proto area.  The note.h that ON delivers would disable NOTE().
751ONLY_LINT_DEFS =	-I$(SPRO_VROOT)/prod/include/lint
752
753SECLEVEL=	core
754LINT.c=		$(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS) $(CPPFLAGS) \
755		$(ALWAYS_LINT_DEFS)
756LINT64.c=	$(LINT) $(ONLY_LINT_DEFS) $(LINTFLAGS64) $(CPPFLAGS) \
757		$(ALWAYS_LINT_DEFS)
758LINT.s=		$(LINT.c)
759
760# For some future builds, NATIVE_MACH and MACH might be different.
761# Therefore, NATIVE_MACH needs to be redefined in the
762# environment as `uname -p` to override this macro.
763#
764# For now at least, we cross-compile amd64 on i386 machines.
765NATIVE_MACH=	$(MACH:amd64=i386)
766
767# Define native compilation macros
768#
769
770# Base directory where compilers are loaded.
771# Defined here so it can be overridden by developer.
772#
773SPRO_ROOT=		$(BUILD_TOOLS)/SUNWspro
774SPRO_VROOT=		$(SPRO_ROOT)/SS12
775GNU_ROOT=		/usr
776
777# Till SS12u1 formally becomes the NV CBE, LINT is hard
778# coded to be picked up from the $SPRO_ROOT/sunstudio12.1/
779# location. Impacted variables are sparc_LINT, sparcv9_LINT,
780# i386_LINT, amd64_LINT.
781# Reset them when SS12u1 is rolled out.
782#
783
784# Specify platform compiler versions for languages
785# that we use (currently only c and c++).
786#
787sparc_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
788$(__GNUC)sparc_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
789sparc_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
790$(__GNUC)sparc_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
791sparc_CPP=		/usr/ccs/lib/cpp
792sparc_AS=		/usr/ccs/bin/as -xregsym=no
793sparc_LD=		/usr/ccs/bin/ld
794sparc_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
795
796sparcv9_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
797$(__GNUC64)sparcv9_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
798sparcv9_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
799$(__GNUC64)sparcv9_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
800sparcv9_CPP=		/usr/ccs/lib/cpp
801sparcv9_AS=		/usr/ccs/bin/as -xregsym=no
802sparcv9_LD=		/usr/ccs/bin/ld
803sparcv9_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
804
805i386_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
806$(__GNUC)i386_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
807i386_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
808$(__GNUC)i386_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
809i386_CPP=		/usr/ccs/lib/cpp
810i386_AS=		/usr/ccs/bin/as
811$(__GNUC)i386_AS=	$(ONBLD_TOOLS)/bin/$(MACH)/aw
812i386_LD=		/usr/ccs/bin/ld
813i386_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
814
815amd64_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
816$(__GNUC64)amd64_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
817amd64_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
818$(__GNUC64)amd64_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
819amd64_CPP=		/usr/ccs/lib/cpp
820amd64_AS=		$(ONBLD_TOOLS)/bin/$(MACH)/aw
821amd64_LD=		/usr/ccs/bin/ld
822amd64_LINT=		$(SPRO_ROOT)/sunstudio12.1/bin/lint
823
824NATIVECC=		$($(NATIVE_MACH)_CC)
825NATIVECCC=		$($(NATIVE_MACH)_CCC)
826NATIVECPP=		$($(NATIVE_MACH)_CPP)
827NATIVEAS=		$($(NATIVE_MACH)_AS)
828NATIVELD=		$($(NATIVE_MACH)_LD)
829NATIVELINT=		$($(NATIVE_MACH)_LINT)
830
831#
832# Makefile.master.64 overrides these settings
833#
834CC=			$(NATIVECC)
835CCC=			$(NATIVECCC)
836CPP=			$(NATIVECPP)
837AS=			$(NATIVEAS)
838LD=			$(NATIVELD)
839LINT=			$(NATIVELINT)
840
841# The real compilers used for this build
842CW_CC_CMD=		$(CC) -_compiler
843CW_CCC_CMD=		$(CCC) -_compiler
844REAL_CC=		$(CW_CC_CMD:sh)
845REAL_CCC=		$(CW_CCC_CMD:sh)
846
847# Pass -Y flag to cpp (method of which is release-dependent)
848CCYFLAG=		-Y I,
849
850BDIRECT=	-Bdirect
851BDYNAMIC=	-Bdynamic
852BLOCAL=		-Blocal
853BNODIRECT=	-Bnodirect
854BREDUCE=	-Breduce
855BSTATIC=	-Bstatic
856
857ZDEFS=		-zdefs
858ZDIRECT=	-zdirect
859ZIGNORE=	-zignore
860ZINITFIRST=	-zinitfirst
861ZINTERPOSE=	-zinterpose
862ZLAZYLOAD=	-zlazyload
863ZLOADFLTR=	-zloadfltr
864ZMULDEFS=	-zmuldefs
865ZNODEFAULTLIB=	-znodefaultlib
866ZNODEFS=	-znodefs
867ZNODELETE=	-znodelete
868ZNODLOPEN=	-znodlopen
869ZNODUMP=	-znodump
870ZNOLAZYLOAD=	-znolazyload
871ZNOLDYNSYM=	-znoldynsym
872ZNORELOC=	-znoreloc
873ZNOVERSION=	-znoversion
874ZRECORD=	-zrecord
875ZREDLOCSYM=	-zredlocsym
876ZTEXT=		-ztext
877ZVERBOSE=	-zverbose
878
879GSHARED=	-G
880CCMT=		-mt
881
882# Handle different PIC models on different ISAs
883# (May be overridden by lower-level Makefiles)
884
885sparc_C_PICFLAGS =	-K pic
886sparcv9_C_PICFLAGS =	-K pic
887i386_C_PICFLAGS =	-K pic
888amd64_C_PICFLAGS =	-K pic
889C_PICFLAGS =		$($(MACH)_C_PICFLAGS)
890C_PICFLAGS64 =		$($(MACH64)_C_PICFLAGS)
891
892sparc_C_BIGPICFLAGS =	-K PIC
893sparcv9_C_BIGPICFLAGS =	-K PIC
894i386_C_BIGPICFLAGS =	-K PIC
895amd64_C_BIGPICFLAGS =	-K PIC
896C_BIGPICFLAGS =		$($(MACH)_C_BIGPICFLAGS)
897C_BIGPICFLAGS64 =	$($(MACH64)_C_BIGPICFLAGS)
898
899# CC requires there to be no space between '-K' and 'pic' or 'PIC'.
900sparc_CC_PICFLAGS =	-Kpic
901sparcv9_CC_PICFLAGS =	-KPIC
902i386_CC_PICFLAGS = 	-Kpic
903amd64_CC_PICFLAGS = 	-Kpic
904CC_PICFLAGS =		$($(MACH)_CC_PICFLAGS)
905CC_PICFLAGS64 =		$($(MACH64)_CC_PICFLAGS)
906
907AS_PICFLAGS=		$(C_PICFLAGS)
908AS_BIGPICFLAGS=		$(C_BIGPICFLAGS)
909
910#
911# Default label for CTF sections
912#
913CTFCVTFLAGS=		-i -L VERSION
914
915#
916# Override to pass module-specific flags to ctfmerge.  Currently used only by
917# krtld to turn on fuzzy matching, and source-level debugging to inhibit
918# stripping.
919#
920CTFMRGFLAGS=
921
922#
923# Make the transition between old and new CTF Tools. The new ctf tools
924# do not support stabs (eg. Sun Studio). By setting BUILD_OLD_CTF_TOOLS
925# here or in the environment file, the old ones will be built.
926#
927BUILD_NEW_CTF_TOOLS=
928BUILD_OLD_CTF_TOOLS=$(POUND_SIGN)
929$(BUILD_OLD_CTF_TOOLS)BUILD_NEW_CTF_TOOLS= $(POUND_SIGN)
930
931CTFCONVERT_O		= $(CTFCONVERT) $(CTFCVTFLAGS) $@
932
933ELFSIGN_O=	$(TRUE)
934ELFSIGN_CRYPTO=	$(ELFSIGN_O)
935ELFSIGN_OBJECT=	$(ELFSIGN_O)
936
937# Rules (normally from make.rules) and macros which are used for post
938# processing files. Normally, these do stripping of the comment section
939# automatically.
940#    RELEASE_CM:	Should be editted to reflect the release.
941#    POST_PROCESS_O:	Post-processing for `.o' files.
942#    POST_PROCESS_A:	Post-processing for `.a' files (currently null).
943#    POST_PROCESS_SO:	Post-processing for `.so' files.
944#    POST_PROCESS:	Post-processing for executable files (no suffix).
945# Note that these macros are not completely generalized as they are to be
946# used with the file name to be processed following.
947#
948# It is left as an exercise to Release Engineering to embellish the generation
949# of the release comment string.
950#
951#	If this is a standard development build:
952#		compress the comment section (mcs -c)
953#		add the standard comment (mcs -a $(RELEASE_CM))
954#		add the development specific comment (mcs -a $(DEV_CM))
955#
956#	If this is an installation build:
957#		delete the comment section (mcs -d)
958#		add the standard comment (mcs -a $(RELEASE_CM))
959#		add the development specific comment (mcs -a $(DEV_CM))
960#
961#	If this is an release build:
962#		delete the comment section (mcs -d)
963#		add the standard comment (mcs -a $(RELEASE_CM))
964#
965# The following list of macros are used in the definition of RELEASE_CM
966# which is used to label all binaries in the build:
967#
968# 	RELEASE		Specific release of the build, eg: 5.2
969#	RELEASE_MAJOR	Major version number part of $(RELEASE)
970#	RELEASE_MINOR	Minor version number part of $(RELEASE)
971#	VERSION		Version of the build (alpha, beta, Generic)
972#	PATCHID		If this is a patch this value should contain
973#			the patchid value (eg: "Generic 100832-01"), otherwise
974#			it will be set to $(VERSION)
975#	RELEASE_DATE	Date of the Release Build
976#	PATCH_DATE	Date the patch was created, if this is blank it
977#			will default to the RELEASE_DATE
978#
979RELEASE_MAJOR=	5
980RELEASE_MINOR=	11
981RELEASE=	$(RELEASE_MAJOR).$(RELEASE_MINOR)
982VERSION=	SunOS Development
983PATCHID=	$(VERSION)
984RELEASE_DATE=	release date not set
985PATCH_DATE=	$(RELEASE_DATE)
986RELEASE_CM=	"@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
987DEV_CM=		"@($(POUND_SIGN))SunOS Internal Development: non-nightly build"
988
989PROCESS_COMMENT=  @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
990$(RELEASE_BUILD)PROCESS_COMMENT=   @?${MCS} -d -a $(RELEASE_CM)
991
992STRIP_STABS=			   $(STRIP) -x $@
993$(SRCDBGBLD)STRIP_STABS=	   :
994
995POST_PROCESS_O=
996POST_PROCESS_A=
997POST_PROCESS_SO=	$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
998			$(ELFSIGN_OBJECT)
999POST_PROCESS=		$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
1000			$(ELFSIGN_OBJECT)
1001
1002#
1003# chk4ubin is a tool that inspects a module for a symbol table
1004# ELF section size which can trigger an OBP bug on older platforms.
1005# This problem affects only specific sun4u bootable modules.
1006#
1007CHK4UBIN=	$(ONBLD_TOOLS)/bin/$(MACH)/chk4ubin
1008CHK4UBINFLAGS=
1009CHK4UBINARY=	$(CHK4UBIN) $(CHK4UBINFLAGS) $@
1010
1011#
1012# PKGARCHIVE specifies the default location where packages should be
1013# placed if built.
1014#
1015$(RELEASE_BUILD)PKGARCHIVESUFFIX=	-nd
1016PKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
1017
1018#
1019# The repositories will be created with these publisher settings.  To
1020# update an image to the resulting repositories, this must match the
1021# publisher name provided to "pkg set-publisher."
1022#
1023PKGPUBLISHER_REDIST=	on-nightly
1024PKGPUBLISHER_NONREDIST=	on-extra
1025
1026#	Default build rules which perform comment section post-processing.
1027#
1028.c:
1029	$(LINK.c) -o $@ $< $(LDLIBS)
1030	$(POST_PROCESS)
1031.c.o:
1032	$(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
1033	$(POST_PROCESS_O)
1034.c.a:
1035	$(COMPILE.c) -o $% $<
1036	$(PROCESS_COMMENT) $%
1037	$(AR) $(ARFLAGS) $@ $%
1038	$(RM) $%
1039.s.o:
1040	$(COMPILE.s) -o $@ $<
1041	$(POST_PROCESS_O)
1042.s.a:
1043	$(COMPILE.s) -o $% $<
1044	$(PROCESS_COMMENT) $%
1045	$(AR) $(ARFLAGS) $@ $%
1046	$(RM) $%
1047.cc:
1048	$(LINK.cc) -o $@ $< $(LDLIBS)
1049	$(POST_PROCESS)
1050.cc.o:
1051	$(COMPILE.cc) $(OUTPUT_OPTION) $<
1052	$(POST_PROCESS_O)
1053.cc.a:
1054	$(COMPILE.cc) -o $% $<
1055	$(AR) $(ARFLAGS) $@ $%
1056	$(PROCESS_COMMENT) $%
1057	$(RM) $%
1058.y:
1059	$(YACC.y) $<
1060	$(LINK.c) -o $@ y.tab.c $(LDLIBS)
1061	$(POST_PROCESS)
1062	$(RM) y.tab.c
1063.y.o:
1064	$(YACC.y) $<
1065	$(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
1066	$(POST_PROCESS_O)
1067	$(RM) y.tab.c
1068.l:
1069	$(RM) $*.c
1070	$(LEX.l) $< > $*.c
1071	$(LINK.c) -o $@ $*.c -ll $(LDLIBS)
1072	$(POST_PROCESS)
1073	$(RM) $*.c
1074.l.o:
1075	$(RM) $*.c
1076	$(LEX.l) $< > $*.c
1077	$(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
1078	$(POST_PROCESS_O)
1079	$(RM) $*.c
1080
1081.bin.o:
1082	$(COMPILE.b) -o $@ $<
1083	$(POST_PROCESS_O)
1084
1085.java.class:
1086	$(COMPILE.java) $<
1087
1088# Bourne and Korn shell script message catalog build rules.
1089# We extract all gettext strings with sed(1) (being careful to permit
1090# multiple gettext strings on the same line), weed out the dups, and
1091# build the catalogue with awk(1).
1092
1093.sh.po .ksh.po:
1094	$(SED) -n -e ":a" 				\
1095		  -e "h" 					\
1096		  -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p"	\
1097		  -e "x"					\
1098		  -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/"	\
1099		  -e "t a"					\
1100	       $< | sort -u | $(AWK) '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
1101
1102#
1103# Python and Perl executable and message catalog build rules.
1104#
1105.SUFFIXES: .pl .pm .py .pyc
1106
1107.pl:
1108	$(RM) $@;
1109	$(SED) -e "s@TEXT_DOMAIN@\"$(TEXT_DOMAIN)\"@" $< > $@;
1110	$(CHMOD) +x $@
1111
1112.py:
1113	$(RM) $@; $(SED) -e "1s:^\#!@PYTHON@:\#!/usr/bin/python$(PYTHON_VERSION):" < $< > $@; $(CHMOD) +x $@
1114
1115.py.pyc:
1116	$(RM) $@
1117	$(PYTHON) -mpy_compile $<
1118	@[ $(<)c = $@ ] || $(MV) $(<)c $@
1119
1120.py.po:
1121	$(GNUXGETTEXT) $(GNUXGETFLAGS) -d $(<F:%.py=%) $< ;
1122
1123.pl.po .pm.po:
1124	$(XGETTEXT) $(XGETFLAGS) -d $(<F) $< ;
1125	$(RM)	$@ ;
1126	$(SED) "/^domain/d" < $(<F).po > $@ ;
1127	$(RM) $(<F).po
1128
1129#
1130# When using xgettext, we want messages to go to the default domain,
1131# rather than the specified one.  This special version of the
1132# COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
1133# causing xgettext to put all messages into the default domain.
1134#
1135CPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
1136
1137.c.i:
1138	$(CPPFORPO) $< > $@
1139
1140.h.i:
1141	$(CPPFORPO) $< > $@
1142
1143.y.i:
1144	$(YACC) -d $<
1145	$(CPPFORPO) y.tab.c  > $@
1146	$(RM) y.tab.c
1147
1148.l.i:
1149	$(LEX) $<
1150	$(CPPFORPO) lex.yy.c  > $@
1151	$(RM) lex.yy.c
1152
1153.c.po:
1154	$(CPPFORPO) $< > $<.i
1155	$(BUILD.po)
1156
1157.cc.po:
1158	$(CPPFORPO) $< > $<.i
1159	$(BUILD.po)
1160
1161.y.po:
1162	$(YACC) -d $<
1163	$(CPPFORPO) y.tab.c  > $<.i
1164	$(BUILD.po)
1165	$(RM) y.tab.c
1166
1167.l.po:
1168	$(LEX) $<
1169	$(CPPFORPO) lex.yy.c  > $<.i
1170	$(BUILD.po)
1171	$(RM) lex.yy.c
1172
1173#
1174# Rules to perform stylistic checks
1175#
1176.SUFFIXES: .x .xml .check .xmlchk
1177
1178.h.check:
1179	$(DOT_H_CHECK)
1180
1181.x.check:
1182	$(DOT_X_CHECK)
1183
1184.xml.xmlchk:
1185	$(MANIFEST_CHECK)
1186
1187#
1188# Include rules to render automated sccs get rules "safe".
1189#
1190include $(SRC)/Makefile.noget
1191