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