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