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