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