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