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) 2010, Oracle and/or its affiliates. All rights reserved.
  24 # Copyright 2015, OmniTI Computer Consulting, Inc. All rights reserved.
  25 # Copyright 2015 Igor Kozhukhov <ikozhukhov@gmail.com>
  26 #
  27 
  28 include $(SRC)/Makefile.master
  29 include $(SRC)/Makefile.buildnum
  30 
  31 #
  32 # Make sure we're getting a consistent execution environment for the
  33 # embedded scripts.
  34 #
  35 SHELL= /usr/bin/ksh93
  36 
  37 #
  38 # To suppress package dependency generation on any system, regardless
  39 # of how it was installed, set SUPPRESSPKGDEP=true in the build
  40 # environment.
  41 #
  42 SUPPRESSPKGDEP= false
  43 
  44 #
  45 # Comment this line out or set "PKGDEBUG=" in your build environment
  46 # to get more verbose output from the make processes in usr/src/pkg
  47 #
  48 PKGDEBUG= @
  49 
  50 #
  51 # Cross platform packaging notes
  52 #
  53 # By default, we package the proto area from the same architecture as
  54 # the packaging build.  In other words, if you're running nightly or
  55 # bldenv on an x86 platform, it will take objects from the x86 proto
  56 # area and use them to create x86 repositories.
  57 #
  58 # If you want to create repositories for an architecture that's
  59 # different from $(uname -p), you do so by setting PKGMACH in your
  60 # build environment.
  61 #
  62 # For this to work correctly, the following must all happen:
  63 #
  64 #   1. You need the desired proto area, which you can get either by
  65 #      doing a gatekeeper-style build with the -U option to
  66 #      nightly(1), or by using rsync.  If you don't do this, you will
  67 #      get packaging failures building all packages, because pkgsend
  68 #      is unable to find the required binaries.
  69 #   2. You need the desired tools proto area, which you can get in the
  70 #      same ways as the normal proto area.  If you don't do this, you
  71 #      will get packaging failures building onbld, because pkgsend is
  72 #      unable to find the tools binaries.
  73 #   3. The remainder of this Makefile should never refer directly to
  74 #      $(MACH).  Instead, $(PKGMACH) should be used whenever an
  75 #      architecture-specific path or token is needed.  If this is done
  76 #      incorrectly, then packaging will fail, and you will see the
  77 #      value of $(uname -p) instead of the value of $(PKGMACH) in the
  78 #      commands that fail.
  79 #   4. Each time a rule in this Makefile invokes $(MAKE), it should
  80 #      pass PKGMACH=$(PKGMACH) explicitly on the command line.  If
  81 #      this is done incorrectly, then packaging will fail, and you
  82 #      will see the value of $(uname -p) instead of the value of
  83 #      $(PKGMACH) in the commands that fail.
  84 #
  85 # Refer also to the convenience targets defined later in this
  86 # Makefile.
  87 #
  88 PKGMACH=        $(MACH)
  89 
  90 #
  91 # ROOT, TOOLS_PROTO, and PKGARCHIVE should be set by nightly or
  92 # bldenv.  These macros translate them into terms of $PKGMACH, instead
  93 # of $ARCH.
  94 #
  95 PKGROOT.cmd=    print $(ROOT) | sed -e s:/root_$(MACH):/root_$(PKGMACH):
  96 PKGROOT=        $(PKGROOT.cmd:sh)
  97 TOOLSROOT.cmd=  print $(TOOLS_PROTO) | sed -e s:/root_$(MACH):/root_$(PKGMACH):
  98 TOOLSROOT=      $(TOOLSROOT.cmd:sh)
  99 PKGDEST.cmd=    print $(PKGARCHIVE) | sed -e s:/$(MACH)/:/$(PKGMACH)/:
 100 PKGDEST=        $(PKGDEST.cmd:sh)
 101 
 102 EXCEPTIONS= packaging
 103 
 104 PKGMOGRIFY= pkgmogrify
 105 
 106 #
 107 # Always build the redistributable repository, but only build the
 108 # nonredistributable bits if we have access to closed source.
 109 #
 110 # Some objects that result from the closed build are still
 111 # redistributable, and should be packaged as part of an open-only
 112 # build.  Access to those objects is provided via the closed-bins
 113 # tarball.  See usr/src/tools/scripts/bindrop.sh for details.
 114 #
 115 REPOS= redist
 116 
 117 #
 118 # The packages directory will contain the processed manifests as
 119 # direct build targets and subdirectories for package metadata extracted
 120 # incidentally during manifest processing.
 121 #
 122 # Nothing underneath $(PDIR) should ever be managed by SCM.
 123 #
 124 PDIR= packages.$(PKGMACH)
 125 
 126 #
 127 # The tools proto must be specified for dependency generation.
 128 # Publication from the tools proto area is managed in the
 129 # publication rule.
 130 #
 131 $(PDIR)/developer-build-onbld.dep:= PKGROOT= $(TOOLSROOT)
 132 
 133 PKGPUBLISHER= $(PKGPUBLISHER_REDIST)
 134 
 135 #
 136 # To get these defaults, manifests should simply refer to $(PKGVERS).
 137 #
 138 PKGVERS_COMPONENT= 0.$(RELEASE)
 139 PKGVERS_BUILTON= $(RELEASE)
 140 PKGVERS_BRANCH= 0.$(ONNV_BUILDNUM)
 141 PKGVERS= $(PKGVERS_COMPONENT),$(PKGVERS_BUILTON)-$(PKGVERS_BRANCH)
 142 
 143 #
 144 # The ARCH32 and ARCH64 macros are used in the manifests to express
 145 # architecture-specific subdirectories in the installation paths
 146 # for isaexec'd commands.
 147 #
 148 # We can't simply use $(MACH32) and $(MACH64) here, because they're
 149 # only defined for the build architecture.  To do cross-platform
 150 # packaging, we need both values.
 151 #
 152 i386_ARCH32= i86
 153 sparc_ARCH32= sparcv7
 154 i386_ARCH64= amd64
 155 sparc_ARCH64= sparcv9
 156 
 157 #
 158 # macros and transforms needed by pkgmogrify
 159 #
 160 # If you append to this list using target-specific assignments (:=),
 161 # be very careful that the targets are of the form $(PDIR)/pkgname.  If
 162 # you use a higher level target, or a package list, you'll trigger a
 163 # complete reprocessing of all manifests because they'll fail command
 164 # dependency checking.
 165 #
 166 PM_TRANSFORMS= common_actions publish restart_fmri facets defaults \
 167         extract_metadata
 168 PM_INC= transforms manifests
 169 
 170 PKGMOG_DEFINES= \
 171         i386_ONLY=$(POUND_SIGN) \
 172         sparc_ONLY=$(POUND_SIGN) \
 173         $(PKGMACH)_ONLY= \
 174         ARCH=$(PKGMACH) \
 175         ARCH32=$($(PKGMACH)_ARCH32) \
 176         ARCH64=$($(PKGMACH)_ARCH64) \
 177         PKGVERS_COMPONENT=$(PKGVERS_COMPONENT) \
 178         PKGVERS_BUILTON=$(PKGVERS_BUILTON) \
 179         PKGVERS_BRANCH=$(PKGVERS_BRANCH) \
 180         PKGVERS=$(PKGVERS) \
 181         PERL_ARCH=$(PERL_ARCH) \
 182         PERL_ARCH64=$(PERL_ARCH64) \
 183         PERL_VERSION=$(PERL_VERSION) \
 184         PERL_PKGVERS=$(PERL_PKGVERS) \
 185         PYTHON_VERSION=$(PYTHON_VERSION) \
 186         PYTHON_PKGVERS=$(PYTHON_PKGVERS)
 187 
 188 PKGDEP_TOKENS_i386= \
 189         'PLATFORM=i86hvm' \
 190         'PLATFORM=i86pc' \
 191         'PLATFORM=i86xpv' \
 192         'ISALIST=amd64' \
 193         'ISALIST=i386'
 194 PKGDEP_TOKENS_sparc= \
 195         'PLATFORM=sun4u' \
 196         'PLATFORM=sun4v' \
 197         'ISALIST=sparcv9' \
 198         'ISALIST=sparc'
 199 PKGDEP_TOKENS= $(PKGDEP_TOKENS_$(PKGMACH))
 200 
 201 #
 202 # The package lists are generated with $(PKGDEP_TYPE) as their
 203 # dependency types, so that they can be included by either an
 204 # incorporation or a group package.
 205 #
 206 $(PDIR)/osnet-redist.mog := PKGDEP_TYPE= require
 207 $(PDIR)/osnet-incorporation.mog:= PKGDEP_TYPE= incorporate
 208 
 209 PKGDEP_INCORP= \
 210         depend fmri=consolidation/osnet/osnet-incorporation type=require
 211 
 212 #
 213 # All packaging build products should go into $(PDIR), so they don't
 214 # need to be included separately in CLOBBERFILES.
 215 #
 216 CLOBBERFILES= $(PDIR) proto_list_$(PKGMACH) install-$(PKGMACH).out \
 217         license-list
 218 
 219 #
 220 # By default, PKGS will list all manifests.  To build and/or publish a
 221 # subset of packages, override this on the command line or in the
 222 # build environment and then reference (implicitly or explicitly) the all
 223 # or install targets.  Using ls -1 (that's a one) or print or echo to
 224 # get the list of manifests is a little hackish, but avoids having a
 225 # 900+ line file to explicitly list them all.
 226 #
 227 # We want some manifests to optionally built based on environment
 228 # options, so those are excluded and optionally added back in.
 229 # We also want a relatively easy way to add files to the list of
 230 # manifests given special treatment.  Add any other special ones
 231 # to the SPECIAL_MANIFESTS vaiable.  It can contain wildcards in
 232 # regexp form, i.e. SUNW.* as one useful example.
 233 #
 234 SPECIAL_MANIFESTS = "SUNWippl print-lp-ipp-ipp-listener.mf"
 235 LIST_MANIFESTS_CMD = (cd manifests ; /usr/bin/ls -1 *.mf |\
 236         $(SED) $(SPECIAL_MANIFESTS:%=-e '/^%$$/d') )
 237 MANIFESTS = $(LIST_MANIFESTS_CMD:sh)
 238 
 239 # Conditionally add back lp-ipp
 240 $(ENABLE_IPP_PRINTING) MANIFESTS += "print-lp-ipp-ipp-listener.mf SUNWippl"
 241 
 242 PKGS= $(MANIFESTS:%.mf=%)
 243 DEP_PKGS= $(PKGS:%=$(PDIR)/%.dep)
 244 PROC_PKGS= $(PKGS:%=$(PDIR)/%.mog)
 245 
 246 #
 247 # Track the synthetic manifests separately so we can properly express
 248 # build rules and dependencies.  The synthetic and real packages use
 249 # different sets of transforms and macros for pkgmogrify.
 250 #
 251 SYNTH_PKGS= osnet-incorporation osnet-redist
 252 DEP_SYNTH_PKGS= $(SYNTH_PKGS:%=$(PDIR)/%.dep)
 253 PROC_SYNTH_PKGS= $(SYNTH_PKGS:%=$(PDIR)/%.mog)
 254 
 255 #
 256 # Root of pkg image to use for dependency resolution
 257 # Normally / on the machine used to build the binaries
 258 #
 259 PKGDEP_RESOLVE_IMAGE = /
 260 
 261 #
 262 # For each package, we determine the target repository based on
 263 # manifest-embedded metadata.  Because we make that determination on
 264 # the fly, the publication target cannot be expressed as a
 265 # subdirectory inside the unknown-by-the-makefile target repository.
 266 #
 267 # In order to limit the target set to real files in known locations,
 268 # we use a ".pub" file in $(PDIR) for each processed manifest, regardless
 269 # of content or target repository.
 270 #
 271 PUB_PKGS= $(SYNTH_PKGS:%=$(PDIR)/%.pub) $(PKGS:%=$(PDIR)/%.pub)
 272 
 273 #
 274 # Any given repository- and status-specific package list may be empty,
 275 # but we can only determine that dynamically, so we always generate all
 276 # lists for each repository we're building.
 277 #
 278 # The meanings of each package status are as follows:
 279 #
 280 #       PKGSTAT         meaning
 281 #       ----------      ----------------------------------------------------
 282 #       noincorp        Do not include in incorporation or group package
 283 #       obsolete        Include in incorporation, but not group package
 284 #       renamed         Include in incorporation, but not group package
 285 #       current         Include in incorporation and group package
 286 #
 287 # Since the semantics of the "noincorp" package status dictate that
 288 # such packages are not included in the incorporation or group packages,
 289 # there is no need to build noincorp package lists.
 290 #
 291 PKGLISTS= \
 292         $(REPOS:%=$(PDIR)/packages.%.current) \
 293         $(REPOS:%=$(PDIR)/packages.%.renamed) \
 294         $(REPOS:%=$(PDIR)/packages.%.obsolete)
 295 
 296 .KEEP_STATE:
 297 
 298 .PARALLEL: $(PKGS) $(PROC_PKGS) $(DEP_PKGS) \
 299         $(PROC_SYNTH_PKGS) $(DEP_SYNTH_PKGS) $(PUB_PKGS)
 300 
 301 #
 302 # For a single manifest, the dependency chain looks like this:
 303 #
 304 #       raw manifest (mypkg.mf)
 305 #               |
 306 #               | use pkgmogrify to process raw manifest
 307 #               |
 308 #       processed manifest (mypkg.mog)
 309 #               |
 310 #          *    | use pkgdepend generate to generate dependencies
 311 #               |
 312 #       manifest with TBD dependencies (mypkg.dep)
 313 #               |
 314 #          %    | use pkgdepend resolve to resolve dependencies
 315 #               |
 316 #       manifest with dependencies resolved (mypkg.res)
 317 #               |
 318 #               | use pkgsend to publish the package
 319 #               |
 320 #       placeholder to indicate successful publication (mypkg.pub)
 321 #       
 322 # * This may be suppressed via SUPPRESSPKGDEP.  The resulting
 323 #   packages will install correctly, but care must be taken to
 324 #   install all dependencies, because pkg will not have the input
 325 #   it needs to determine this automatically.
 326 #
 327 # % This is included in this diagram to make the picture complete, but
 328 #   this is a point of synchronization in the build process.
 329 #   Dependency resolution is actually done once on the entire set of
 330 #   manifests, not on a per-package basis.
 331 #
 332 # The full dependency chain for generating everything that needs to be
 333 # published, without actually publishing it, looks like this:
 334 #
 335 #       processed synthetic packages
 336 #               |               |
 337 #       package lists       synthetic package manifests
 338 #               |
 339 #       processed real packages
 340 #           |           |
 341 #       package dir     real package manifests
 342 #
 343 # Here, each item is a set of real or synthetic packages.  For this
 344 # portion of the build, no reference is made to the proto area.  It is
 345 # therefore suitable for the "all" target, as opposed to "install."
 346 #
 347 # Since each of these steps is expressed explicitly, "all" need only
 348 # depend on the head of the chain.
 349 #
 350 # From the end of manifest processing, the publication dependency
 351 # chain looks like this:
 352 #
 353 #               repository metadata (catalogs and search indices)
 354 #                       |
 355 #                       | pkgrepo refresh
 356 #                       |
 357 #               published packages
 358 #                |              |
 359 #                |              | pkgsend publish
 360 #                |              |
 361 #         repositories      resolved dependencies
 362 #                |                      |
 363 # pkgsend        |                      | pkgdepend resolve
 364 # create-repository                     |
 365 #                |              generated dependencies
 366 #        repo directories               |
 367 #                                       | pkgdepend
 368 #                                       |
 369 #                               processed manifests
 370 # 
 371 
 372 ALL_TARGETS= $(PROC_SYNTH_PKGS) proto_list_$(PKGMACH)
 373 
 374 all: $(ALL_TARGETS)
 375 
 376 #
 377 # This will build the directory to contain the processed manifests
 378 # and the metadata symlinks.
 379 #
 380 $(PDIR):
 381         @print "Creating $(@)"
 382         $(PKGDEBUG)$(INS.dir)
 383 
 384 #
 385 # This rule resolves dependencies across all published manifests.
 386 #
 387 # We shouldn't have to ignore the error from pkgdepend, but until
 388 # 16012 and its dependencies are resolved, pkgdepend will always exit
 389 # with an error.
 390 #
 391 $(PDIR)/gendeps: $(DEP_SYNTH_PKGS) $(DEP_PKGS)
 392         -$(PKGDEBUG)if [ "$(SUPPRESSPKGDEP)" = "true" ]; then \
 393                 print "Suppressing dependency resolution"; \
 394                 for p in $(DEP_PKGS:%.dep=%); do \
 395                         $(CP) $$p.dep $$p.res; \
 396                 done; \
 397         else \
 398                 print "Resolving dependencies"; \
 399                 pkgdepend -R $(PKGDEP_RESOLVE_IMAGE) resolve \
 400                     -m $(DEP_SYNTH_PKGS) $(DEP_PKGS); \
 401                 for p in $(DEP_SYNTH_PKGS:%.dep=%) $(DEP_PKGS:%.dep=%); do \
 402                         if [ "$$(print $$p.metadata.*)" = \
 403                              "$$(print $$p.metadata.noincorp.*)" ]; \
 404                         then \
 405                                 print "Removing dependency versions from $$p"; \
 406                                 $(PKGMOGRIFY) $(PKGMOG_VERBOSE) \
 407                                     -O $$p.res -I transforms \
 408                                     strip_versions $$p.dep.res; \
 409                                 $(RM) $$p.dep.res; \
 410                         else \
 411                                 $(MV) $$p.dep.res $$p.res; \
 412                         fi; \
 413                 done; \
 414         fi
 415         $(PKGDEBUG)$(TOUCH) $(@)
 416 
 417 install: $(ALL_TARGETS) repository-metadata
 418 
 419 repository-metadata: publish_pkgs
 420         $(PKGDEBUG)for r in $(REPOS); do \
 421                 pkgrepo refresh -s $(PKGDEST)/repo.$$r; \
 422         done
 423 
 424 #
 425 # Since we create zero-length processed manifests for a graceful abort
 426 # from pkgmogrify, we need to detect that here and make no effort to
 427 # publish the package.
 428 #
 429 # For all other packages, we publish them regardless of status.  We
 430 # derive the target repository as a component of the metadata-derived
 431 # symlink for each package.
 432 #
 433 publish_pkgs: $(REPOS:%=$(PKGDEST)/repo.%) $(PDIR)/gendeps .WAIT $(PUB_PKGS)
 434 
 435 #
 436 # Before publishing, we want to pull the license files from $CODEMGR_WS
 437 # into the proto area.  This allows us to NOT pass $SRC (or
 438 # $CODEMGR_WS) as a basedir for publication.
 439 #
 440 $(PUB_PKGS): stage-licenses
 441 
 442 #
 443 # Initialize the empty on-disk repositories
 444 #
 445 $(REPOS:%=$(PKGDEST)/repo.%):
 446         @print "Initializing $(@F)"
 447         $(PKGDEBUG)$(INS.dir)
 448         $(PKGDEBUG)pkgsend -s file://$(@) create-repository \
 449                 --set-property publisher.prefix=$(PKGPUBLISHER)
 450 
 451 #
 452 # rule to process real manifests
 453 #
 454 # To allow redistributability and package status to change, we must
 455 # remove not only the actual build target (the processed manifest), but
 456 # also the incidental ones (the metadata-derived symlinks).
 457 #
 458 # If pkgmogrify exits cleanly but fails to create the specified output
 459 # file, it means that it encountered an abort directive.  That means
 460 # that this package should not be published for this particular build
 461 # environment.  Since we can't prune such packages from $(PKGS)
 462 # retroactively, we need to create an empty target file to keep make
 463 # from trying to rebuild it every time.  For these empty targets, we
 464 # do not create metadata symlinks.
 465 #
 466 # Automatic dependency resolution to files is also done at this phase of
 467 # processing.  The skipped packages are skipped due to existing bugs
 468 # in pkgdepend.
 469 #
 470 # The incorporation dependency is tricky: it needs to go into all
 471 # current and renamed manifests (ie all incorporated packages), but we
 472 # don't know which those are until after we run pkgmogrify.  So
 473 # instead of expressing it as a transform, we tack it on ex post facto.
 474 #
 475 # Implementation notes:
 476 #
 477 # - The first $(RM) must not match other manifests, or we'll run into
 478 #   race conditions with parallel manifest processing.
 479 #
 480 # - The make macros [ie $(MACRO)] are evaluated when the makefile is
 481 #   read in, and will result in a fixed, macro-expanded rule for each
 482 #   target enumerated in $(PROC_PKGS).
 483 #
 484 # - The shell variables (ie $$VAR) are assigned on the fly, as the rule
 485 #   is executed.  The results may only be referenced in the shell in
 486 #   which they are assigned, so from the perspective of make, all code
 487 #   that needs these variables needs to be part of the same line of
 488 #   code.  Hence the use of command separators and line continuation
 489 #   characters.
 490 #
 491 # - The extract_metadata transforms are designed to spit out shell
 492 #   variable assignments to stdout.  Those are published to the
 493 #   .vars temporary files, and then used as input to the eval
 494 #   statement.  This is done in stages specifically so that pkgmogrify
 495 #   can signal failure if the manifest has a syntactic or other error.
 496 #   The eval statement should begin with the default values, and the
 497 #   output from pkgmogrify (if any) should be in the form of a
 498 #   variable assignment to override those defaults.
 499 #
 500 # - When this rule completes execution, it must leave an updated
 501 #   target file ($@) in place, or make will reprocess the package
 502 #   every time it encounters it as a dependency.  Hence the "touch"
 503 #   statement to ensure that the target is created, even when
 504 #   pkgmogrify encounters an abort in the publish transforms.
 505 #
 506 
 507 .SUFFIXES: .mf .mog .dep .res .pub
 508 
 509 $(PDIR)/%.mog: manifests/%.mf
 510         @print "Processing manifest $(<F)"
 511         @env PKGFMT_OUTPUT=v1 pkgfmt -c $<
 512         $(PKGDEBUG)$(RM) $(@) $(@:%.mog=%) $(@:%.mog=%.nodepend) \
 513                 $(@:%.mog=%.lics) $(PDIR)/$(@F:%.mog=%).metadata.* $(@).vars
 514         $(PKGDEBUG)$(PKGMOGRIFY) $(PKGMOG_VERBOSE) $(PM_INC:%= -I %) \
 515                 $(PKGMOG_DEFINES:%=-D %) -P $(@).vars -O $(@) \
 516                 $(<) $(PM_TRANSFORMS)
 517         $(PKGDEBUG)eval REPO=redist PKGSTAT=current NODEPEND=$(SUPPRESSPKGDEP) \
 518                 `$(CAT) -s $(@).vars`; \
 519         if [ -f $(@) ]; then \
 520                 if [ "$$NODEPEND" != "false" ]; then \
 521                          $(TOUCH) $(@:%.mog=%.nodepend); \
 522                 fi; \
 523                 $(LN) -s $(@F) \
 524                         $(PDIR)/$(@F:%.mog=%).metadata.$$PKGSTAT.$$REPO; \
 525                 if [ \( "$$PKGSTAT" = "current" \) -o \
 526                      \( "$$PKGSTAT" = "renamed" \) ]; \
 527                         then print $(PKGDEP_INCORP) >> $(@); \
 528                 fi; \
 529                 print $$LICS > $(@:%.mog=%.lics); \
 530         else \
 531                 $(TOUCH) $(@) $(@:%.mog=%.lics); \
 532         fi
 533         $(PKGDEBUG)$(RM) $(@).vars
 534 
 535 $(PDIR)/%.dep: $(PDIR)/%.mog
 536         @print "Generating dependencies for $(<F)"
 537         $(PKGDEBUG)$(RM) $(@)
 538         $(PKGDEBUG)if [ ! -f $(@:%.dep=%.nodepend) ]; then \
 539                 pkgdepend generate -m $(PKGDEP_TOKENS:%=-D %) $(<) \
 540                         $(PKGROOT) > $(@); \
 541         else \
 542                 $(CP) $(<) $(@); \
 543         fi
 544 
 545 #
 546 # The full chain implies that there should be a .dep.res suffix rule,
 547 # but dependency generation is done on a set of manifests, rather than
 548 # on a per-manifest basis.  Instead, see the gendeps rule above.
 549 #
 550 
 551 $(PDIR)/%.pub: $(PDIR)/%.res
 552         $(PKGDEBUG)m=$$(basename $(@:%.pub=%).metadata.*); \
 553         r=$${m#$(@F:%.pub=%.metadata.)+(?).}; \
 554         if [ -s $(<) ]; then \
 555                 print "Publishing $(@F:%.pub=%) to $$r repository"; \
 556                 pkgsend -s file://$(PKGDEST)/repo.$$r publish \
 557                     -d $(PKGROOT) -d $(TOOLSROOT) \
 558                     -d license_files -d $(PKGROOT)/licenses \
 559                     --fmri-in-manifest --no-index --no-catalog $(<) \
 560                     > /dev/null; \
 561         fi; \
 562         $(TOUCH) $(@);
 563 
 564 #
 565 # rule to build the synthetic manifests
 566 #
 567 # This rule necessarily has PKGDEP_TYPE that changes according to
 568 # the specific synthetic manifest.  Rather than escape command
 569 # dependency checking for the real manifest processing, or failing to
 570 # express the (indirect) dependency of synthetic manifests on real
 571 # manifests, we simply split this rule out from the one above.
 572 #
 573 # The implementation notes from the previous rule are applicable
 574 # here, too.
 575 #
 576 $(PROC_SYNTH_PKGS): $(PKGLISTS) $$(@F:%.mog=%.mf)
 577         @print "Processing synthetic manifest $(@F:%.mog=%.mf)"
 578         $(PKGDEBUG)$(RM) $(@) $(PDIR)/$(@F:%.mog=%).metadata.* $(@).vars
 579         $(PKGDEBUG)$(PKGMOGRIFY) $(PKGMOG_VERBOSE) -I transforms -I $(PDIR) \
 580                 $(PKGMOG_DEFINES:%=-D %) -D PKGDEP_TYPE=$(PKGDEP_TYPE) \
 581                 -P $(@).vars -O $(@) $(@F:%.mog=%.mf) \
 582                 $(PM_TRANSFORMS) synthetic
 583         $(PKGDEBUG)eval REPO=redist PKGSTAT=current `$(CAT) -s $(@).vars`; \
 584         if [ -f $(@) ]; then \
 585                 $(LN) -s $(@F) \
 586                         $(PDIR)/$(@F:%.mog=%).metadata.$$PKGSTAT.$$REPO; \
 587         else \
 588                 $(TOUCH) $(@); \
 589         fi
 590         $(PKGDEBUG)$(RM) $(@).vars
 591 
 592 $(DEP_SYNTH_PKGS): $$(@:%.dep=%.mog)
 593         @print "Skipping dependency generation for $(@F:%.dep=%)"
 594         $(PKGDEBUG)$(CP) $(@:%.dep=%.mog) $(@)
 595 
 596 clean:
 597 
 598 clobber: clean
 599         $(RM) -r $(CLOBBERFILES)
 600 
 601 #
 602 # This rule assumes that all links in the $PKGSTAT directories
 603 # point to valid manifests, and will fail the make run if one
 604 # does not contain an fmri.
 605 #
 606 # We do this in the BEGIN action instead of using pattern matching
 607 # because we expect the fmri to be at or near the first line of each input
 608 # file, and this way lets us avoid reading the rest of the file after we
 609 # find what we need.
 610 #
 611 # We keep track of a failure to locate an fmri, so we can fail the
 612 # make run, but we still attempt to process each package in the
 613 # repo/pkgstat-specific subdir, in hopes of maybe giving some
 614 # additional useful info.
 615 #
 616 # The protolist is used for bfu archive creation, which may be invoked
 617 # interactively by the user.  Both protolist and PKGLISTS targets
 618 # depend on $(PROC_PKGS), but protolist builds them recursively.
 619 # To avoid collisions, we insert protolist into the dependency chain
 620 # here.  This has two somewhat subtle benefits: it allows bfu archive
 621 # creation to work correctly, even when -a was not part of NIGHTLY_OPTIONS,
 622 # and it ensures that a protolist file here will always correspond to the
 623 # contents of the processed manifests, which can vary depending on build
 624 # environment.
 625 #
 626 $(PKGLISTS): $(PROC_PKGS)
 627         $(PKGDEBUG)sdotr=$(@F:packages.%=%); \
 628         r=$${sdotr%.+(?)}; s=$${sdotr#+(?).}; \
 629         print "Generating $$r $$s package list"; \
 630         $(RM) $(@); $(TOUCH) $(@); \
 631         $(AWK) 'BEGIN { \
 632                 if (ARGC < 2) { \
 633                         exit; \
 634                 } \
 635                 retcode = 0; \
 636                 for (i = 1; i < ARGC; i++) { \
 637                         do { \
 638                                 e = getline f < ARGV[i]; \
 639                         } while ((e == 1) && (f !~ /name=pkg.fmri/)); \
 640                         close(ARGV[i]); \
 641                         if (e == 1) { \
 642                                 l = split(f, a, "="); \
 643                                 print "depend fmri=" a[l], \
 644                                         "type=$$(PKGDEP_TYPE)"; \
 645                         } else { \
 646                                 print "no fmri in " ARGV[i] >> "/dev/stderr"; \
 647                                 retcode = 2; \
 648                         } \
 649                 } \
 650                 exit retcode; \
 651         }' `find $(PDIR) -type l -a \( $(PKGS:%=-name %.metadata.$$s.$$r -o) \
 652                 -name NOSUCHFILE \)` >> $(@)
 653 
 654 #
 655 # rules to validate proto area against manifests, check for safe
 656 # file permission modes, and generate a faux proto list
 657 #
 658 # For the check targets, the dependencies on $(PROC_PKGS) is specified
 659 # as a subordinate make process in order to suppress output.
 660 #
 661 makesilent:
 662         @$(MAKE) -e $(PROC_PKGS) PKGMACH=$(PKGMACH) \
 663                 SUPPRESSPKGDEP=$(SUPPRESSPKGDEP) > /dev/null
 664 
 665 #
 666 # The .lics files were created during pkgmogrification, and list the
 667 # set of licenses to pull from $SRC for each package.  Because
 668 # licenses may be duplicated between packages, we uniquify them as
 669 # well as aggregating them here.
 670 #
 671 license-list: makesilent
 672         $(PKGDEBUG)( for l in `cat $(PROC_PKGS:%.mog=%.lics)`; \
 673                 do print $$l; done ) | sort -u > $@
 674 
 675 #
 676 # Staging the license and description files in the proto area allows
 677 # us to do proper unreferenced file checking of both license and
 678 # description files without blanket exceptions, and to pull license
 679 # content without reference to $CODEMGR_WS during publication.
 680 #
 681 stage-licenses: license-list FRC
 682         $(PKGDEBUG)$(MAKE) -e -f Makefile.lic \
 683                 PKGDEBUG=$(PKGDEBUG) LICROOT=$(PKGROOT)/licenses \
 684                 `$(AWK) '{ \
 685                         print "$(PKGROOT)/licenses/" $$0; \
 686                         print "$(PKGROOT)/licenses/" $$0 ".descrip"; \
 687                 }' license-list` > /dev/null;
 688 
 689 protocmp: makesilent
 690         @validate_pkg -a $(PKGMACH) -v \
 691                 $(EXCEPTIONS:%=-e $(CODEMGR_WS)/exception_lists/%) \
 692                 -m $(PDIR) -p $(PKGROOT) -p $(TOOLSROOT)
 693 
 694 pmodes: makesilent
 695         @validate_pkg -a $(PKGMACH) -M -m $(PDIR) \
 696                 -e $(CODEMGR_WS)/exception_lists/pmodes 
 697 
 698 check: protocmp pmodes
 699 
 700 protolist: proto_list_$(PKGMACH)
 701 
 702 proto_list_$(PKGMACH): $(PROC_PKGS)
 703         @validate_pkg -a $(PKGMACH) -L -m $(PDIR) > $(@)
 704 
 705 $(PROC_PKGS): $(PDIR)
 706 
 707 #
 708 # This is a convenience target to allow package names to function as
 709 # build targets.  Generally, using it is only useful when iterating on
 710 # development of a manifest.
 711 #
 712 # When processing a manifest, use the basename (without extension) of
 713 # the package.  When publishing, use the basename with a ".pub"
 714 # extension.
 715 #
 716 # Other than during manifest development, the preferred usage is to
 717 # avoid these targets and override PKGS on the make command line and
 718 # use the provided all and install targets.
 719 #
 720 $(PKGS) $(SYNTH_PKGS): $(PDIR)/$$(@:%=%.mog)
 721 
 722 $(PKGS:%=%.pub) $(SYNTH_PKGS:%=%.pub): $(PDIR)/$$(@)
 723 
 724 #
 725 # This is a convenience target to resolve dependencies without publishing
 726 # packages.
 727 #
 728 gendeps: $(PDIR)/gendeps
 729 
 730 #
 731 # These are convenience targets for cross-platform packaging.  If you
 732 # want to build any of "the normal" targets for a different
 733 # architecture, simply use "arch/target" as your build target.
 734 #
 735 # Since the most common use case for this is "install," the architecture
 736 # specific install targets have been further abbreviated to elide "/install."
 737 #
 738 i386/% sparc/%:
 739         $(MAKE) -e $(@F) PKGMACH=$(@D) SUPPRESSPKGDEP=$(SUPPRESSPKGDEP)
 740 
 741 i386 sparc: $$(@)/install
 742 
 743 FRC: