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