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