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