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