xref: /titanic_50/usr/src/Makefile.master (revision 9acbbeaf2a1ffe5c14b244867d427714fab43c5c)
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 2006 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29#
30# Makefile.master, global definitions for system source
31#
32ROOT=		/proto
33
34# Historically, ON builds were always done with root permissions, and the
35# owner/group information was duplicated in the Makefiles and the packaging
36# data and kept in sync by manual intervention.  This is no longer true.
37# The only source of this information is packaging.  The proto area ($ROOT)
38# does not have definitive onwer/group information, and no Makefile should
39# attempt to set this.  CH once toggled operations restricted to root.  It
40# is now just set to `#'.
41#
42# At some point in the future, CH, CHOWN, CHGRP, OWNER, and GROUP should all
43# be stripped completely from the source base.  They are kept for now until
44# on10-based projects can merge and transition away from them.
45#
46# RELEASE_BUILD should be cleared for final release builds. This is completely
47# independent of CH. NOT_RELEASE_BUILD is exactly what the name implies.
48#
49# INTERNAL_RELEASE_BUILD is a subset of RELEASE_BUILD. It mostly controls
50# identification strings. Enabling RELEASE_BUILD automatically enables
51# INTERNAL_RELEASE_BUILD.
52#
53# EXPORT_RELEASE_BUILD controls whether binaries are built in a form that
54# can be released for export under a binary license.  It is orthogonal to
55# the other *RELEASE_BUILD settings.  ("#" means do an export release
56# build, "" means do a normal build.)
57#
58# CLOSED_BUILD controls whether we try to build files under
59# usr/closed.  ("" means to build closed code, "#" means don't try to
60# build it.)  Skipping the closed code implies doing an export release
61# build.
62#
63# STRIP_COMMENTS toggles comment section striping. Generally the same setting
64# as INTERNAL_RELEASE_BUILD.
65#
66# __GNUC toggles the building of ON components using gcc and related tools.
67# Normally set to `#', set it to `' to do gcc build.
68#
69# The declaration POUND_SIGN is always '#'. This is needed to get around the
70# make feature that '#' is always a comment delimiter, even when escaped or
71# quoted.  The only way of generating this is the :sh macro mechanism.  Note
72# however that in general :sh macros should be avoided in makefiles that are
73# widely included into other makefiles, as the resulting shell executions can
74# cause a noticable slowdown in build times.
75#
76POUND_SIGN:sh=				echo \\043
77CH=					$(POUND_SIGN)
78
79NOT_RELEASE_BUILD=
80INTERNAL_RELEASE_BUILD=			$(POUND_SIGN)
81RELEASE_BUILD=				$(POUND_SIGN)
82$(RELEASE_BUILD)NOT_RELEASE_BUILD=	$(POUND_SIGN)
83$(RELEASE_BUILD)INTERNAL_RELEASE_BUILD=
84PATCH_BUILD=				$(POUND_SIGN)
85
86# If CLOSED_IS_PRESENT is not set, assume the closed tree is present.
87CLOSED_BUILD_1=	$(CLOSED_IS_PRESENT:yes=)
88CLOSED_BUILD=	$(CLOSED_BUILD_1:no=$(POUND_SIGN))
89
90EXPORT_RELEASE_BUILD=			$(POUND_SIGN)
91$(CLOSED_BUILD)EXPORT_RELEASE_BUILD=
92
93# SPARC_BLD is '#' for an Intel build.
94# INTEL_BLD is '#' for a Sparc build.
95SPARC_BLD_1=    $(MACH:i386=$(POUND_SIGN))
96SPARC_BLD=      $(SPARC_BLD_1:sparc=)
97INTEL_BLD_1=    $(MACH:sparc=$(POUND_SIGN))
98INTEL_BLD=      $(INTEL_BLD_1:i386=)
99
100STRIP_COMMENTS=	$(INTERNAL_RELEASE_BUILD)
101
102# set __GNUC= in the environment to build 32-bit with the gcc compiler.
103# The default is to use the Sun Studio 10 compiler for all processor types.
104__GNUC=		$(POUND_SIGN)
105
106# set __GNUC64= in the environment to build 64-bit with the gcc compiler.
107# The default is to use the Sun Studio 10 compiler by using the __GNUC
108# setting.
109__GNUC64=	$(__GNUC)
110
111# CLOSED is the root of the tree that contains source which isn't released
112# as open source
113CLOSED=		$(SRC)/../closed
114
115# BUILD_TOOLS is the root of all tools including compilers.
116# ONBLD_TOOLS is the root of all the tools that are part of SUNWonbld.
117
118BUILD_TOOLS=		/ws/onnv-tools
119ONBLD_TOOLS=		$(BUILD_TOOLS)/onbld
120
121JAVA_ROOT=	/usr/java
122
123SFW_ROOT=	/usr/sfw
124SFWINCDIR=	$(SFW_ROOT)/include
125SFWLIBDIR=	$(SFW_ROOT)/lib
126SFWLIBDIR64=	$(SFW_ROOT)/lib/$(MACH64)
127
128RPCGEN=		/usr/bin/rpcgen
129STABS=		$(ONBLD_TOOLS)/bin/$(MACH)/stabs
130ECHO=		echo
131INS=		install
132TRUE=		true
133SYMLINK=	/usr/bin/ln -s
134LN=		/usr/bin/ln
135CHMOD=		/usr/bin/chmod
136CHOWN=		$(TRUE)
137CHGRP=		$(TRUE)
138MV=		/usr/bin/mv -f
139RM=		/usr/bin/rm -f
140GREP=		/usr/bin/grep
141EGREP=		/usr/bin/egrep
142SED=		/usr/bin/sed
143NAWK=		/usr/bin/nawk
144CP=		/usr/bin/cp -f
145MCS=		/usr/ccs/bin/mcs
146CAT=            /usr/bin/cat
147M4=		/usr/ccs/bin/m4
148STRIP=		/usr/ccs/bin/strip
149LEX=		/usr/ccs/bin/lex
150YACC=		/usr/ccs/bin/yacc
151CPP=		/usr/lib/cpp
152JAVAC=		$(JAVA_ROOT)/bin/javac
153JAVAH=		$(JAVA_ROOT)/bin/javah
154JAVADOC=	$(JAVA_ROOT)/bin/javadoc
155RMIC=		$(JAVA_ROOT)/bin/rmic
156JAR=		$(JAVA_ROOT)/bin/jar
157CTFCONVERT=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfconvert
158CTFMERGE=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfmerge
159CTFSTABS=	$(ONBLD_TOOLS)/bin/$(MACH)/ctfstabs
160GENOFFSETS=	$(ONBLD_TOOLS)/bin/genoffsets
161CTFCVTPTBL=	$(ONBLD_TOOLS)/bin/ctfcvtptbl
162CTFFINDMOD=	$(ONBLD_TOOLS)/bin/ctffindmod
163XREF=		$(ONBLD_TOOLS)/bin/xref
164FIND=		/usr/bin/find
165PERL=		/usr/bin/perl
166SORT=		/usr/bin/sort
167TOUCH=		/usr/bin/touch
168WC=		/usr/bin/wc
169XARGS=		/usr/bin/xargs
170ELFSIGN=	/usr/bin/elfsign
171DTRACE=		/usr/sbin/dtrace
172CHECK_FNAMES=	$(ONBLD_TOOLS)/bin/check_fnames
173
174# Due to 6367203, objects built with gcc will fail the namespace checks.
175# Remove this override once the compiler bug is fixed.
176$(__GNUC)CHECK_FNAMES=	$(TRUE)
177
178FILEMODE=	644
179DIRMODE=	755
180
181# Note: owner and group for proto area objects is no longer set by
182# Makefiles at all.  These have no real effect and are kept here for
183# transition purposes.  They (along with CH, CHOWN, and CHGRP) should be
184# removed early in the s11 development cycle.
185OWNER=		root
186GROUP=		bin
187
188#
189# The version of the patch makeup table optimized for build-time use.  Used
190# during patch builds only.
191$(PATCH_BUILD)PMTMO_FILE=$(SRC)/patch_makeup_table.mo
192
193# Declare that nothing should be built in parallel.
194# Individual Makefiles can use the .PARALLEL target to declare otherwise.
195.NO_PARALLEL:
196
197# For stylistic checks
198#
199# Note that the X and C checks are not used at this time and may need
200# modification when they are actually used.
201#
202CSTYLE=		cstyle
203CSTYLE_TAIL=
204HDRCHK=		hdrchk
205HDRCHK_TAIL=
206JSTYLE=		jstyle
207
208DOT_H_CHECK=	\
209	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL); \
210	$(HDRCHK) $< $(HDRCHK_TAIL)
211
212DOT_X_CHECK=	\
213	@$(ECHO) "checking $<"; $(RPCGEN) -C -h $< | $(CSTYLE) $(CSTYLE_TAIL); \
214	$(RPCGEN) -C -h $< | $(HDRCHK) $< $(HDRCHK_TAIL)
215
216DOT_C_CHECK=	\
217	@$(ECHO) "checking $<"; $(CSTYLE) $< $(CSTYLE_TAIL)
218
219MANIFEST_CHECK=	\
220	@$(ECHO) "checking $<"; \
221	SVCCFG_DTD=$(SRC)/cmd/svc/dtd/service_bundle.dtd.1 \
222	$(SRC)/cmd/svc/svccfg/svccfg-native validate $<
223
224INS.file=	$(RM) $@; $(INS) -s -m $(FILEMODE) -f $(@D) $<
225INS.dir=	$(INS) -s -d -m $(DIRMODE) $@
226# installs and renames at once
227#
228INS.rename=	$(INS.file); $(MV) $(@D)/$(<F) $@
229
230# install a link
231INSLINKTARGET=	$<
232INS.link=	$(RM) $@; $(LN) $(INSLINKTARGET) $@
233
234# MACH must be set in the shell environment per uname -p on the build host
235# More specific architecture variables should be set in lower makefiles.
236#
237# MACH64 is derived from MACH, and BUILD64 is set to `#' for
238# architectures on which we do not build 64-bit versions.
239# (There are no such architectures at the moment.)
240#
241# Set BUILD64=# in the environment to disable 64-bit amd64
242# builds on i386 machines.
243
244MACH64_1=	$(MACH:sparc=sparcv9)
245MACH64=		$(MACH64_1:i386=amd64)
246
247MACH32_1=	$(MACH:sparc=sparcv7)
248MACH32=		$(MACH32_1:i386=i86)
249
250sparc_BUILD64=
251i386_BUILD64=
252BUILD64=	$($(MACH)_BUILD64)
253
254#
255# C compiler mode. Future compilers may change the default on us,
256# so force extended ANSI mode globally. Lower level makefiles can
257# override this by setting CCMODE.
258#
259CCMODE=			-Xa
260CCMODE64=		-Xa
261
262#
263# C compiler verbose mode. This is so we can enable it globally,
264# but turn it off in the lower level makefiles of things we cannot
265# (or aren't going to) fix.
266#
267CCVERBOSE=		-v
268
269# set this to the secret flag "-Wc,-Qiselect-v9abiwarn=1" to get warnings
270# from the compiler about places the -xarch=v9 may differ from -xarch=v9c.
271V9ABIWARN=
272
273# set this to the secret flag "-Wc,-Qiselect-regsym=0" to disable register
274# symbols (used to detect conflicts between objects that use global registers)
275# we disable this now for safety, and because genunix doesn't link with
276# this feature (the v9 default) enabled.
277#
278# REGSYM is separate since the C++ driver syntax is different.
279CCREGSYM=		-Wc,-Qiselect-regsym=0
280CCCREGSYM=		-Qoption cg -Qiselect-regsym=0
281
282# prevent static symbols being optimized out
283CCSTATICSYM=		-Wc,-Qassembler-ounrefsym=0
284#
285# generate 32-bit addresses in the v9 kernel. Saves memory.
286CCABS32=		-Wc,-xcode=abs32
287
288# One optimization the compiler might perform is to turn this:
289#	#pragma weak foo
290#	extern int foo;
291#	if (&foo)
292#		foo = 5;
293# into
294#	foo = 5;
295# Since we do some of this (foo might be referenced in common kernel code
296# but provided only for some cpu modules or platforms), we disable this
297# optimization.
298#
299sparc_CCUNBOUND	= -Wd,-xsafe=unboundsym
300i386_CCUNBOUND	=
301CCUNBOUND	= $($(MACH)_CCUNBOUND)
302
303#
304# compiler '-xarch' flag. This is here to centralize it and make it
305# overridable for testing.
306sparc_XARCH=		-xarch=v8
307sparcv9_XARCH=		-xarch=v9
308i386_XARCH=
309amd64_XARCH=		-xarch=amd64 -Ui386 -U__i386
310
311# assembler '-xarch' flag.  Different from compiler '-xarch' flag.
312sparc_AS_XARCH=		-xarch=v8plus
313sparcv9_AS_XARCH=	-xarch=v9
314i386_AS_XARCH=
315amd64_AS_XARCH=		-xarch=amd64 -P -Ui386 -U__i386
316
317#
318# These flags define what we need to be 'standalone' i.e. -not- part
319# of the rather more cosy userland environment.  This basically means
320# the kernel.
321#
322# XX64	future versions of gcc will make -mcmodel=kernel imply -mno-red-zone
323#
324sparc_STAND_FLAGS=	-_gcc=-ffreestanding
325sparcv9_STAND_FLAGS=	-_gcc=-ffreestanding
326i386_STAND_FLAGS=	-_gcc=-ffreestanding
327amd64_STAND_FLAGS=	-Wu,-xmodel=kernel
328
329SAVEARGS=		-Wu,-save_args
330amd64_STAND_FLAGS	+= $(SAVEARGS)
331
332STAND_FLAGS_32 = $($(MACH)_STAND_FLAGS)
333STAND_FLAGS_64 = $($(MACH64)_STAND_FLAGS)
334
335#
336# disable the incremental linker
337ILDOFF=			-xildoff
338#
339XDEPEND=		-xdepend
340XFFLAG=			-xF
341XESS=			-xs
342XSTRCONST=		-xstrconst
343
344#
345# turn warnings into errors (C)
346CERRWARN = -errtags=yes -errwarn=%all
347CERRWARN += -erroff=E_EMPTY_TRANSLATION_UNIT
348CERRWARN += -erroff=E_STATEMENT_NOT_REACHED
349
350#
351# turn warnings into errors (C++)
352CCERRWARN=		-xwe
353
354# C99 mode
355C99_ENABLE=	-xc99=%all
356C99_DISABLE=	-xc99=%none
357C99MODE=	$(C99_DISABLE)
358C99LMODE=	$(C99MODE:-xc99%=-Xc99%)
359
360# In most places, assignments to these macros should be appended with +=
361# (CPPFLAGS.master allows values to be prepended to CPPFLAGS).
362sparc_CFLAGS=	$(sparc_XARCH)
363sparcv9_CFLAGS=	$(sparcv9_XARCH) -dalign $(CCVERBOSE) $(V9ABIWARN) $(CCREGSYM) \
364		$(CCSTATICSYM)
365i386_CFLAGS=	$(i386_XARCH)
366amd64_CFLAGS=	$(amd64_XARCH)
367
368sparc_ASFLAGS=	$(sparc_AS_XARCH)
369sparcv9_ASFLAGS=$(sparcv9_AS_XARCH)
370i386_ASFLAGS=	$(i386_AS_XARCH)
371amd64_ASFLAGS=	$(amd64_AS_XARCH)
372
373#
374sparc_COPTFLAG=		-xO3
375sparcv9_COPTFLAG=	-xO3
376i386_COPTFLAG=		-O
377amd64_COPTFLAG=		-xO3
378
379COPTFLAG= $($(MACH)_COPTFLAG)
380COPTFLAG64= $($(MACH64)_COPTFLAG)
381
382# When -g is used, the compiler globalizes static objects
383# (gives them a unique prefix). Disable that.
384CNOGLOBAL= -W0,-noglobal
385
386# Direct the Sun Studio compiler to use a static globalization prefix based on the
387# name of the module rather than something unique. Otherwise, objects
388# will not build deterministically, as subsequent compilations of identical
389# source will yeild objects that always look different.
390#
391# In the same spirit, this will also remove the date from the N_OPT stab.
392CGLOBALSTATIC= -W0,-xglobalstatic
393
394# Normally, gcc uses indirect DWARF strings to save space.  However,
395# this causes relocations that ctfconvert cannot handle.  Disable this.
396CDWARFSTR=	-_gcc=-fno-dwarf2-indirect-strings
397
398# Sometimes we want all symbols and types in debugging information even
399# if they aren't used.
400CALLSYMS=	-W0,-xdbggen=no%usedonly
401
402#
403# Default debug format for Sun Studio 11 is dwarf, so force it to
404# generate stabs.
405#
406DEBUGFORMAT=	-xdebugformat=stabs
407
408#
409# Flags used to build in debug mode for ctf generation.  Bugs in the Devpro
410# compilers currently prevent us from building with cc-emitted DWARF.
411#
412CTF_FLAGS_sparc	= -g -Wc,-Qiselect-T1 $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
413CTF_FLAGS_i386	= -g $(C99MODE) $(CNOGLOBAL) $(CDWARFSTR)
414CTF_FLAGS	= $(CTF_FLAGS_$(MACH)) $(DEBUGFORMAT)
415
416#
417# Flags used with genoffsets
418#
419GOFLAGS = -_noecho \
420	$(CALLSYMS) \
421	$(CDWARFSTR)
422
423OFFSETS_CREATE = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
424	$(CC) $(GOFLAGS) $(CFLAGS) $(CPPFLAGS)
425
426OFFSETS_CREATE64 = $(GENOFFSETS) -s $(CTFSTABS) -r $(CTFCONVERT) \
427	$(CC) $(GOFLAGS) $(CFLAGS64) $(CPPFLAGS)
428
429#
430# tradeoff time for space (smaller is better)
431#
432sparc_SPACEFLAG		= -xspace -W0,-Lt
433sparcv9_SPACEFLAG	= -xspace -W0,-Lt
434i386_SPACEFLAG		= -xspace
435amd64_SPACEFLAG		=
436
437SPACEFLAG		= $($(MACH)_SPACEFLAG)
438SPACEFLAG64		= $($(MACH64)_SPACEFLAG)
439
440#
441# The Sun Studio 11 compiler has changed the behaviour of integer
442# wrap arounds and so a flag is needed to use the legacy behaviour
443# (without this flag panics/hangs could be exposed within the source).
444#
445sparc_IROPTFLAG		= -W2,-xwrap_int
446sparcv9_IROPTFLAG	= -W2,-xwrap_int
447i386_IROPTFLAG		=
448amd64_IROPTFLAG		=
449
450IROPTFLAG		= $($(MACH)_IROPTFLAG)
451IROPTFLAG64		= $($(MACH64)_IROPTFLAG)
452
453sparc_XREGSFLAG		= -xregs=no%appl
454sparcv9_XREGSFLAG	= -xregs=no%appl
455i386_XREGSFLAG		=
456amd64_XREGSFLAG		=
457
458XREGSFLAG		= $($(MACH)_XREGSFLAG)
459XREGSFLAG64		= $($(MACH64)_XREGSFLAG)
460
461CFLAGS=         $(COPTFLAG) $($(MACH)_CFLAGS) $(SPACEFLAG) $(CCMODE) \
462		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG) \
463		$(CGLOBALSTATIC)
464CFLAGS64=       $(COPTFLAG64) $($(MACH64)_CFLAGS) $(SPACEFLAG64) $(CCMODE64) \
465		$(ILDOFF) $(CERRWARN) $(C99MODE) $(CCUNBOUND) $(IROPTFLAG64) \
466		$(CGLOBALSTATIC)
467#
468# Flags that are used to build parts of the code that are subsequently
469# run on the build machine (also known as the NATIVE_BUILD).
470#
471NATIVE_CFLAGS=	$(COPTFLAG) $($(NATIVE_MACH)_CFLAGS) $(CCMODE) \
472		$(ILDOFF) $(CERRWARN) $(C99MODE) $($(NATIVE_MACH)_CCUNBOUND) \
473		$(IROPTFLAG) $(CGLOBALSTATIC)
474
475DTEXTDOM=-DTEXT_DOMAIN=\"$(TEXT_DOMAIN)\"	# For messaging.
476DTS_ERRNO=-D_TS_ERRNO
477CPPFLAGS.master=$(DTEXTDOM) $(DTS_ERRNO) \
478	$(ENVCPPFLAGS1) $(ENVCPPFLAGS2) $(ENVCPPFLAGS3) $(ENVCPPFLAGS4)
479CPPFLAGS=	$(CPPFLAGS.master)
480AS_CPPFLAGS=	$(CPPFLAGS.master)
481JAVAFLAGS=	-deprecation
482
483#
484# For source message catalogue
485#
486.SUFFIXES: $(SUFFIXES) .i .po
487MSGROOT= $(ROOT)/catalog
488MSGDOMAIN= $(MSGROOT)/$(TEXT_DOMAIN)
489MSGDOMAINPOFILE = $(MSGDOMAIN)/$(POFILE)
490DCMSGDOMAIN= $(MSGROOT)/LC_TIME/$(TEXT_DOMAIN)
491DCMSGDOMAINPOFILE = $(DCMSGDOMAIN)/$(DCFILE:.dc=.po)
492
493CLOBBERFILES += $(POFILE) $(POFILES)
494COMPILE.cpp= $(CC) -E -C $(CFLAGS) $(CPPFLAGS)
495XGETTEXT= /usr/bin/xgettext
496XGETFLAGS= -c TRANSLATION_NOTE
497BUILD.po= $(XGETTEXT) $(XGETFLAGS) -d $(<F) $<.i ;\
498	$(RM)	$@ ;\
499	sed "/^domain/d" < $(<F).po > $@ ;\
500	$(RM) $(<F).po $<.i
501#
502# This is overwritten by local Makefile when PROG is a list.
503#
504POFILE= $(PROG).po
505
506sparc_CCFLAGS=		-cg92 -compat=4 \
507			-Qoption ccfe -messages=no%anachronism \
508			$(CCERRWARN)
509sparcv9_CCFLAGS=	$(sparcv9_XARCH) -dalign -compat=5 \
510			-Qoption ccfe -messages=no%anachronism \
511			-Qoption ccfe -features=no%conststrings \
512			$(CCCREGSYM) \
513			$(CCERRWARN)
514i386_CCFLAGS=		-compat=4 \
515			-Qoption ccfe -messages=no%anachronism \
516			-Qoption ccfe -features=no%conststrings \
517			$(CCERRWARN)
518amd64_CCFLAGS=		$(amd64_XARCH) -compat=5 \
519			-Qoption ccfe -messages=no%anachronism \
520			-Qoption ccfe -features=no%conststrings \
521			$(CCERRWARN)
522
523sparc_CCOPTFLAG=	-O
524sparcv9_CCOPTFLAG=	-O
525i386_CCOPTFLAG=		-O
526amd64_CCOPTFLAG=	-O
527
528CCOPTFLAG=	$($(MACH)_CCOPTFLAG)
529CCOPTFLAG64=	$($(MACH64)_CCOPTFLAG)
530CCFLAGS=	$(CCOPTFLAG) $($(MACH)_CCFLAGS)
531CCFLAGS64=	$(CCOPTFLAG64) $($(MACH64)_CCFLAGS)
532#
533# Used by Makefile.cmd, Makefile.lib and Makefile.ucbcmd
534#
535PGA_MAPFILE =	$(SRC)/cmd/sgs/mapfiles/$(MACH)/map.pagealign
536#
537#
538# LDLIBS32 can be set in the environment to override the following assignment.
539# LDLIBS64 can be set to override the assignment made in Makefile.master.64.
540# These environment settings make sure that no libraries are searched outside
541# of the local workspace proto area:
542#	LDLIBS32=-YP,$ROOT/lib:$ROOT/usr/lib
543#	LDLIBS64=-YP,$ROOT/lib/$MACH64:$ROOT/usr/lib/$MACH64
544#
545LDLIBS32 =	$(ENVLDLIBS1) $(ENVLDLIBS2) $(ENVLDLIBS3)
546LDLIBS.cmd = 	$(LDLIBS32)
547LDLIBS.lib =	$(LDLIBS32)
548#
549# Define compilation macros.
550#
551COMPILE.c=	$(CC) $(CFLAGS) $(CPPFLAGS) -c
552COMPILE64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) -c
553COMPILE.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) -c
554COMPILE64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) -c
555COMPILE.s=	$(AS) $(ASFLAGS) $(AS_CPPFLAGS)
556COMPILE64.s=	$(AS) $(ASFLAGS) $($(MACH64)_AS_XARCH) $(AS_CPPFLAGS)
557COMPILE.d=	$(DTRACE) -G -32
558COMPILE64.d=	$(DTRACE) -G -64
559
560CLASSPATH=	.
561COMPILE.java=	$(JAVAC) $(JAVAFLAGS) -classpath $(CLASSPATH)
562
563#
564# Link time macros
565#
566CCNEEDED		= -lC
567$(__GNUC)CCNEEDED	= -L$(SFWLIBDIR) -R$(SFWLIBDIR) -lstdc++ -lgcc_s
568
569LINK.c=		$(CC) $(CFLAGS) $(CPPFLAGS) $(LDFLAGS)
570LINK64.c=	$(CC) $(CFLAGS64) $(CPPFLAGS) $(LDFLAGS)
571NORUNPATH=	-norunpath -nolib
572LINK.cc=	$(CCC) $(CCFLAGS) $(CPPFLAGS) $(NORUNPATH) \
573		$(LDFLAGS) $(CCNEEDED)
574LINK64.cc=	$(CCC) $(CCFLAGS64) $(CPPFLAGS) $(NORUNPATH) \
575		$(LDFLAGS) $(CCNEEDED)
576
577#
578# lint macros
579#
580# Note that the undefine of __PRAGMA_REDEFINE_EXTNAME can be removed once
581# ON is built with a version of lint that has the fix for 4484186.
582#
583ALWAYS_LINT_DEFS =	-errtags=yes -s
584ALWAYS_LINT_DEFS +=	-erroff=E_PTRDIFF_OVERFLOW
585ALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_NARROW_CONV
586ALWAYS_LINT_DEFS +=	-U__PRAGMA_REDEFINE_EXTNAME
587ALWAYS_LINT_DEFS +=	$(C99LMODE)
588ALWAYS_LINT_DEFS +=	-errsecurity=$(SECLEVEL)
589ALWAYS_LINT_DEFS +=	-erroff=E_SEC_CREAT_WITHOUT_EXCL
590ALWAYS_LINT_DEFS +=	-erroff=E_SEC_FORBIDDEN_WARN_CREAT
591# XX64 -- really only needed for amd64 lint
592ALWAYS_LINT_DEFS +=	-erroff=E_ASSIGN_INT_TO_SMALL_INT
593ALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_CONST_TO_SMALL_INT
594ALWAYS_LINT_DEFS +=	-erroff=E_CAST_INT_TO_SMALL_INT
595ALWAYS_LINT_DEFS +=	-erroff=E_CAST_TO_PTR_FROM_INT
596ALWAYS_LINT_DEFS +=	-erroff=E_COMP_INT_WITH_LARGE_INT
597ALWAYS_LINT_DEFS +=	-erroff=E_INTEGRAL_CONST_EXP_EXPECTED
598ALWAYS_LINT_DEFS +=	-erroff=E_PASS_INT_TO_SMALL_INT
599ALWAYS_LINT_DEFS +=	-erroff=E_PTR_CONV_LOSES_BITS
600
601SECLEVEL=	core
602LINT.c=		$(LINT) $(LINTFLAGS) $(CPPFLAGS) $(ALWAYS_LINT_DEFS)
603LINT64.c=	$(LINT) $(LINTFLAGS64) $(CPPFLAGS) $(ALWAYS_LINT_DEFS)
604LINT.s=		$(LINT.c)
605
606# For some future builds, NATIVE_MACH and MACH might be different.
607# Therefore, NATIVE_MACH needs to be redefined in the
608# environment as `uname -p` to override this macro.
609#
610# For now at least, we cross-compile amd64 on i386 machines.
611NATIVE_MACH=	$(MACH:amd64=i386)
612
613# Define native compilation macros
614#
615
616# Base directory where compilers are loaded.
617# Defined here so it can be overridden by developer.
618#
619SPRO_ROOT=		$(BUILD_TOOLS)/SUNWspro
620SPRO_VROOT=		$(SPRO_ROOT)/SS11
621GNU_ROOT=		$(SFW_ROOT)
622
623# Specify platform compiler versions for languages
624# that we use (currently only c and c++).
625#
626sparc_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
627$(__GNUC)sparc_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
628sparc_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
629$(__GNUC)sparc_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
630sparc_CPP=		/usr/ccs/lib/cpp
631sparc_AS=		/usr/ccs/bin/as -xregsym=no
632sparc_LD=		/usr/ccs/bin/ld
633sparc_LINT=		$(SPRO_VROOT)/bin/lint
634
635sparcv9_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
636$(__GNUC64)sparcv9_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
637sparcv9_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
638$(__GNUC64)sparcv9_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
639sparcv9_CPP=		/usr/ccs/lib/cpp
640sparcv9_AS=		/usr/ccs/bin/as -xregsym=no
641sparcv9_LD=		/usr/ccs/bin/ld
642sparcv9_LINT=		$(SPRO_VROOT)/bin/lint
643
644# We compile 32-bit objects with cc by default
645i386_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
646$(__GNUC)i386_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
647i386_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
648$(__GNUC)i386_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
649i386_CPP=		/usr/ccs/lib/cpp
650i386_AS=		/usr/ccs/bin/as
651$(__GNUC)i386_AS=	$(ONBLD_TOOLS)/bin/$(MACH)/aw
652i386_LD=		/usr/ccs/bin/ld
653i386_LINT=		$(SPRO_VROOT)/bin/lint
654
655# We compile 64-bit objects with gcc
656amd64_CC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_cc
657$(__GNUC64)amd64_CC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc
658amd64_CCC=		$(ONBLD_TOOLS)/bin/$(MACH)/cw -_CC
659$(__GNUC64)amd64_CCC=	$(ONBLD_TOOLS)/bin/$(MACH)/cw -_g++
660amd64_CPP=		/usr/ccs/lib/cpp
661amd64_AS=		$(ONBLD_TOOLS)/bin/$(MACH)/aw
662amd64_LD=		/usr/ccs/bin/ld
663amd64_LINT=		$(SPRO_VROOT)/bin/lint
664
665NATIVECC=		$($(NATIVE_MACH)_CC)
666NATIVECCC=		$($(NATIVE_MACH)_CCC)
667NATIVECPP=		$($(NATIVE_MACH)_CPP)
668NATIVEAS=		$($(NATIVE_MACH)_AS)
669NATIVELD=		$($(NATIVE_MACH)_LD)
670NATIVELINT=		$($(NATIVE_MACH)_LINT)
671
672#
673# Makefile.master.64 overrides these settings
674#
675CC=			$(NATIVECC)
676CCC=			$(NATIVECCC)
677CPP=			$(NATIVECPP)
678AS=			$(NATIVEAS)
679LD=			$(NATIVELD)
680LINT=			$(NATIVELINT)
681
682# The real compilers used for this build
683CW_CC_CMD=		$(CC) -_compiler
684CW_CCC_CMD=		$(CCC) -_compiler
685REAL_CC=		$(CW_CC_CMD:sh)
686REAL_CCC=		$(CW_CCC_CMD:sh)
687
688# Pass -Y flag to cpp (method of which is release-dependent)
689CCYFLAG=		-Y I,
690
691BDIRECT=	-Bdirect
692BDYNAMIC=	-Bdynamic
693BLOCAL=		-Blocal
694BREDUCE=	-Breduce
695BSTATIC=	-Bstatic
696BSYMBOLIC=	-Bsymbolic
697
698ZCOMBRELOC=	-zcombreloc
699ZDEFS=		-zdefs
700ZIGNORE=	-zignore
701ZINITFIRST=	-zinitfirst
702ZINTERPOSE=	-zinterpose
703ZLAZYLOAD=	-zlazyload
704ZLOADFLTR=	-zloadfltr
705ZMULDEFS=	-zmuldefs
706ZNODEFAULTLIB=	-znodefaultlib
707ZNODEFS=	-znodefs
708ZNODELETE=	-znodelete
709ZNODLOPEN=	-znodlopen
710ZNODUMP=	-znodump
711ZNOLAZYLOAD=	-znolazyload
712ZNORELOC=	-znoreloc
713ZNOVERSION=	-znoversion
714ZREDLOCSYM=	-zredlocsym
715ZTEXT=		-ztext
716
717GSHARED=	-G
718CCMT=		-mt
719
720# Handle different PIC models on different ISAs
721# (May be overridden by lower-level Makefiles)
722
723sparc_C_PICFLAGS =	-K pic
724sparcv9_C_PICFLAGS =	-K pic
725i386_C_PICFLAGS =	-K pic
726amd64_C_PICFLAGS =	-K pic
727C_PICFLAGS =		$($(MACH)_C_PICFLAGS)
728C_PICFLAGS64 =		$($(MACH64)_C_PICFLAGS)
729
730sparc_C_BIGPICFLAGS =	-K PIC
731sparcv9_C_BIGPICFLAGS =	-K PIC
732i386_C_BIGPICFLAGS =	-K PIC
733amd64_C_BIGPICFLAGS =	-K PIC
734C_BIGPICFLAGS =		$($(MACH)_C_BIGPICFLAGS)
735C_BIGPICFLAGS64 =	$($(MACH64)_C_BIGPICFLAGS)
736
737# CC requires there to be no space between '-K' and 'pic' or 'PIC'.
738sparc_CC_PICFLAGS =	-Kpic
739sparcv9_CC_PICFLAGS =	-KPIC
740i386_CC_PICFLAGS = 	-Kpic
741amd64_CC_PICFLAGS = 	-Kpic
742CC_PICFLAGS =		$($(MACH)_CC_PICFLAGS)
743CC_PICFLAGS64 =		$($(MACH64)_CC_PICFLAGS)
744
745AS_PICFLAGS=		$(C_PICFLAGS)
746AS_BIGPICFLAGS=		$(C_BIGPICFLAGS)
747
748#
749# Default label for CTF sections
750#
751CTFCVTFLAGS=		-i -L VERSION
752
753#
754# Override to pass module-specific flags to ctfmerge.  Currently used
755# only by krtld to turn on fuzzy matching.
756#
757CTFMRGFLAGS=
758
759CTFCONVERT_O		= $(CTFCONVERT) $(CTFCVTFLAGS) $@
760
761ELFSIGN_O=	$(TRUE)
762ELFSIGN_CRYPTO=	$(ELFSIGN_O)
763ELFSIGN_OBJECT=	$(ELFSIGN_O)
764$(EXPORT_RELEASE_BUILD)ELFSIGN_O =	$(ELFSIGN)
765$(EXPORT_RELEASE_BUILD)ELFSIGN_KEY =	\
766			$(CLOSED)/cmd/cmd-crypto/etc/keys/SUNWosnet
767$(EXPORT_RELEASE_BUILD)ELFSIGN_CERT=	\
768			$(CLOSED)/cmd/cmd-crypto/etc/certs/SUNWosnet
769$(EXPORT_RELEASE_BUILD)ELFSIGN_SEKEY =	\
770			$(CLOSED)/cmd/cmd-crypto/etc/keys/SUNWosnetSolaris
771$(EXPORT_RELEASE_BUILD)ELFSIGN_SECERT=	\
772			$(CLOSED)/cmd/cmd-crypto/etc/certs/SUNWosnetSolaris
773$(EXPORT_RELEASE_BUILD)ELFSIGN_CRYPTO=	$(ELFSIGN_O) sign \
774			$(ELFSIGN_FORMAT_OPTION) \
775			-k $(ELFSIGN_KEY) -c $(ELFSIGN_CERT) -e $@
776$(EXPORT_RELEASE_BUILD)ELFSIGN_OBJECT=	$(ELFSIGN_O) sign \
777			$(ELFSIGN_FORMAT_OPTION) \
778			-k $(ELFSIGN_SEKEY) -c $(ELFSIGN_SECERT) -e $@
779
780# Rules (normally from make.rules) and macros which are used for post
781# processing files. Normally, these do stripping of the comment section
782# automatically.
783#    RELEASE_CM:	Should be editted to reflect the release.
784#    POST_PROCESS_O:	Post-processing for `.o' files.
785#    POST_PROCESS_A:	Post-processing for `.a' files (currently null).
786#    POST_PROCESS_SO:	Post-processing for `.so' files.
787#    POST_PROCESS:	Post-processing for executable files (no suffix).
788# Note that these macros are not completely generalized as they are to be
789# used with the file name to be processed following.
790#
791# It is left as an exercise to Release Engineering to embellish the generation
792# of the release comment string.
793#
794#	If this is a standard development build:
795#		compress the comment section (mcs -c)
796#		add the standard comment (mcs -a $(RELEASE_CM))
797#		add the development specific comment (mcs -a $(DEV_CM))
798#
799#	If this is an installation build:
800#		delete the comment section (mcs -d)
801#		add the standard comment (mcs -a $(RELEASE_CM))
802#		add the development specific comment (mcs -a $(DEV_CM))
803#
804#	If this is an release build:
805#		delete the comment section (mcs -d)
806#		add the standard comment (mcs -a $(RELEASE_CM))
807#
808#	The ONVERS macro sets the default value for the VERSION string
809#	within pkginfo.
810#
811# The following list of macros are used in the definition of RELEASE_CM
812# which is used to label all binaries in the build:
813#
814# 	RELEASE		Specific release of the build, eg: 5.2
815#	VERSION		Version of the build (alpha, beta, Generic)
816#	PATCHID		If this is a patch this value should contain
817#			the patchid value (eg: "Generic 100832-01"), otherwise
818#			it will be set to $(VERSION)
819#	RELEASE_DATE	Date of the Release Build
820#	PATCH_DATE	Date the patch was created, if this is blank it
821#			will default to the RELEASE_DATE
822#
823ONVERS=		"11.11"
824RELEASE=	5.11
825VERSION=	SunOS Development
826PATCHID=	$(VERSION)
827RELEASE_DATE=	October 2007
828PATCH_DATE=	$(RELEASE_DATE)
829RELEASE_CM=	"@($(POUND_SIGN))SunOS $(RELEASE) $(PATCHID) $(PATCH_DATE)"
830DEV_CM=		"@($(POUND_SIGN))SunOS Internal Development: \
831`$(ECHO) $$LOGNAME` `date +%Y-%m-%d` `$(ECHO) [\`basename $$CODEMGR_WS\`]`"
832
833PROCESS_COMMENT=		   @?${MCS} -c -a $(RELEASE_CM) -a $(DEV_CM)
834$(STRIP_COMMENTS)PROCESS_COMMENT=  @?${MCS} -d -a $(RELEASE_CM) -a $(DEV_CM)
835$(RELEASE_BUILD)PROCESS_COMMENT=   @?${MCS} -d -a $(RELEASE_CM)
836
837STRIP_STABS=			   :
838$(RELEASE_BUILD)STRIP_STABS=	   $(STRIP) -x $@
839
840POST_PROCESS_O=		$(PROCESS_COMMENT) $@
841POST_PROCESS_A=
842POST_PROCESS_SO=	$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
843			$(ELFSIGN_OBJECT)
844POST_PROCESS=		$(PROCESS_COMMENT) $@ ; $(STRIP_STABS) ; \
845			$(ELFSIGN_OBJECT)
846
847#
848# The PKGDEFS macro points to the source directory containing the majority
849# of ON's package definitions plus Makefiles with general package creation
850# rules.
851#
852# PKGARCHIVE specifies the default location where packages should be
853# placed if built.
854#
855PKGDEFS=$(SRC)/pkgdefs
856$(RELEASE_BUILD)PKGARCHIVESUFFIX=	-nd
857PKGARCHIVE=$(SRC)/../../packages/$(MACH)/nightly$(PKGARCHIVESUFFIX)
858
859#	Default build rules which perform comment section post-processing.
860#
861.c:
862	$(LINK.c) -o $@ $< $(LDLIBS)
863	$(POST_PROCESS)
864.c.o:
865	$(COMPILE.c) $(OUTPUT_OPTION) $< $(CTFCONVERT_HOOK)
866	$(POST_PROCESS_O)
867.c.a:
868	$(COMPILE.c) -o $% $<
869	$(PROCESS_COMMENT) $%
870	$(AR) $(ARFLAGS) $@ $%
871	$(RM) $%
872.s.o:
873	$(COMPILE.s) -o $@ $<
874	$(POST_PROCESS_O)
875.s.a:
876	$(COMPILE.s) -o $% $<
877	$(PROCESS_COMMENT) $%
878	$(AR) $(ARFLAGS) $@ $%
879	$(RM) $%
880.cc:
881	$(LINK.cc) -o $@ $< $(LDLIBS)
882	$(POST_PROCESS)
883.cc.o:
884	$(COMPILE.cc) $(OUTPUT_OPTION) $<
885	$(POST_PROCESS_O)
886.cc.a:
887	$(COMPILE.cc) -o $% $<
888	$(AR) $(ARFLAGS) $@ $%
889	$(PROCESS_COMMENT) $%
890	$(RM) $%
891.y:
892	$(YACC.y) $<
893	$(LINK.c) -o $@ y.tab.c $(LDLIBS)
894	$(POST_PROCESS)
895	$(RM) y.tab.c
896.y.o:
897	$(YACC.y) $<
898	$(COMPILE.c) -o $@ y.tab.c $(CTFCONVERT_HOOK)
899	$(POST_PROCESS_O)
900	$(RM) y.tab.c
901.l:
902	$(RM) $*.c
903	$(LEX.l) $< > $*.c
904	$(LINK.c) -o $@ $*.c -ll $(LDLIBS)
905	$(POST_PROCESS)
906	$(RM) $*.c
907.l.o:
908	$(RM) $*.c
909	$(LEX.l) $< > $*.c
910	$(COMPILE.c) -o $@ $*.c $(CTFCONVERT_HOOK)
911	$(POST_PROCESS_O)
912	$(RM) $*.c
913
914.java.class:
915	$(COMPILE.java) $<
916
917#
918# Rules to create message catalogue files from .sh, .ksh, .c, .y, and .l
919# files.  For .sh and .ksh files, we extract all gettext strings with
920# sed(1) (being careful to permit multiple gettext strings on the same
921# line), weed out the dups, and build the catalogue with awk(1).
922#
923
924.sh.po:
925	$(SED) -n -e ":a" 					\
926		  -e "h" 					\
927		  -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p"	\
928		  -e "x"					\
929		  -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/"	\
930		  -e "t a"					\
931	       $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
932
933.ksh.po:
934	$(SED) -n -e ":a" 					\
935		  -e "h" 					\
936		  -e "s/.*gettext *\(\"[^\"]*\"\).*/\1/p"	\
937		  -e "x"					\
938		  -e "s/\(.*\)gettext *\"[^\"]*\"\(.*\)/\1\2/"	\
939		  -e "t a"					\
940	       $< | sort -u | awk '{ print "msgid\t" $$0 "\nmsgstr" }' > $@
941
942#
943# When using xgettext, we want messages to go to the default domain,
944# rather than the specified one.  This special version of the
945# COMPILE.cpp macro effectively prevents expansion of TEXT_DOMAIN,
946# causing xgettext to put all messages into the default domain.
947#
948CPPFORPO=$(COMPILE.cpp:\"$(TEXT_DOMAIN)\"=TEXT_DOMAIN)
949
950.c.i:
951	$(CPPFORPO) $< > $@
952
953.h.i:
954	$(CPPFORPO) $< > $@
955
956.y.i:
957	$(YACC) -d $<
958	$(CPPFORPO) y.tab.c  > $@
959	$(RM) y.tab.c
960
961.l.i:
962	$(LEX) $<
963	$(CPPFORPO) lex.yy.c  > $@
964	$(RM) lex.yy.c
965
966.c.po:
967	$(CPPFORPO) $< > $<.i
968	$(BUILD.po)
969
970.y.po:
971	$(YACC) -d $<
972	$(CPPFORPO) y.tab.c  > $<.i
973	$(BUILD.po)
974	$(RM) y.tab.c
975
976.l.po:
977	$(LEX) $<
978	$(CPPFORPO) lex.yy.c  > $<.i
979	$(BUILD.po)
980	$(RM) lex.yy.c
981
982#
983# Rules to perform stylistic checks
984#
985.SUFFIXES: $(SUFFIXES) .x .xml .check .xmlchk
986
987.h.check:
988	$(DOT_H_CHECK)
989
990.x.check:
991	$(DOT_X_CHECK)
992
993.xml.xmlchk:
994	$(MANIFEST_CHECK)
995
996#
997# Rules to process ONC+ Source partial files
998#
999%_onc_plus:	%
1000	@$(ECHO) "extracting code from $< ... "
1001	sed -n -e '/ONC_PLUS EXTRACT START/,/ONC_PLUS EXTRACT END/p' $<  > $@
1002
1003#
1004# Include rules to render automated sccs get rules "safe".
1005#
1006include $(SRC)/Makefile.noget
1007