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 # uts/sun4v/ontario/Makefile
  23 # Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
  24 # Use is subject to license terms.
  25 #
  26 #ident  "%Z%%M% %I%     %E% SMI"
  27 #
  28 #       This makefile drives the production of the sun4v ontario platform
  29 #       modules.
  30 #
  31 #       sun4v ontario implementation architecture dependent
  32 #
  33 
  34 #
  35 #       Path to the base of the uts directory tree (usually /usr/src/uts).
  36 #
  37 UTSBASE = ../..
  38 
  39 #
  40 #       Include common rules.
  41 #
  42 include $(UTSBASE)/sun4v/ontario/Makefile.ontario
  43 
  44 def             :=      TARGET= def
  45 all             :=      TARGET= all
  46 install         :=      TARGET= install
  47 install_h       :=      TARGET= install_h
  48 clean           :=      TARGET= clean
  49 clobber         :=      TARGET= clobber
  50 lint            :=      TARGET= lint
  51 lintlib         :=      TARGET= lintlib
  52 modlintlib      :=      TARGET= modlintlib
  53 modlist         :=      TARGET= modlist
  54 modlist         :=      NO_STATE= -K $$MODSTATE$$$$
  55 clean.lint      :=      TARGET= clean.lint
  56 check           :=      TARGET= check
  57 
  58 #
  59 #       Default build targets.
  60 #
  61 .KEEP_STATE:
  62 
  63 def all clean clobber clean.lint modlist:       $(ONTARIO_KMODS)
  64 
  65 lintlib:      unix
  66 
  67 modlintlib:   $(ONTARIO_KMODS)
  68 
  69 IMPLEMENTED_PLATFORM    = SUNW,Sun-Fire-T200
  70 LINKED_PLATFORMS        = SUNW,Sun-Fire-T1000
  71 LINKED_PLATFORMS        += SUNW,SPARC-Enterprise-T1000
  72 LINKED_PLATFORMS        += SUNW,Netra-T2000
  73 LINKED_PLATFORMS        += SUNW,SPARC-Enterprise-T2000
  74 PPLINKED_PLATFORMS      = SUNW,Netra-T2000
  75 PPLINKED_PLATFORMS      += SUNW,SPARC-Enterprise-T2000
  76 
  77 install:        $(ROOT_ONTARIO_DIR) $(USR_ONTARIO_DIR) \
  78                 $(USR_ONTARIO_SBIN_DIR) \
  79                 $(USR_ONTARIO_LIB_DIR) \
  80                 $(ROOT_ONTARIO_LIB_DIR) \
  81                 $(LINKED_PLATFORMS:%=$(USR_PLAT_DIR)/%) \
  82                 $(PPLINKED_PLATFORMS:%=$(ROOT_PLAT_DIR)/%) \
  83                 .WAIT $(ONTARIO_KMODS)
  84 
  85 $(ONTARIO_KMODS):       FRC
  86         @cd $@; pwd; $(MAKE) $(NO_STATE) $(TARGET)
  87 
  88 install_h check:        FRC
  89 
  90 lint:   modlintlib .WAIT $(LINT_DEPS)
  91 
  92 LINT_LIBS       = $(LINT_LIB) \
  93                         -L$(ONTARIO_LINT_LIB_DIR) \
  94                         -L$(LINT_LIB_DIR) $(LINT_KMODS:%=-l%) \
  95                             $(CLOSED_LINT_KMODS:%=-l%) \
  96                         -L$(SPARC_LIB_DIR) $(SPARC_LINTS:%=-l%)
  97 
  98 lint.platmod:   modlintlib
  99         @-$(ECHO) "\n$(IMPLEMENTED_PLATFORM) platform-dependent module: global crosschecks:"
 100         @-$(LINT) $(LINTFLAGS) $(LINT_LIBS) 2>&1 | $(LGREP.2)
 101 
 102 #
 103 #       Include common targets.
 104 #
 105 include $(UTSBASE)/$(PLATFORM)/ontario/Makefile.targ