*** NO COMMENTS ***
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 # Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 # Global definitions for sun4u jbos-blade implementation specific modules. 26 # 27 28 # 29 # Define directories. 30 # 31 ROOT_BLADE_DIR = $(ROOT_PLAT_DIR)/SUNW,Serverblade1 32 ROOT_BLADE_MOD_DIR = $(ROOT_BLADE_DIR)/kernel 33 ROOT_BLADE_MISC_DIR_32 = $(ROOT_BLADE_DIR)/kernel/misc 34 ROOT_BLADE_MISC_DIR_64 = $(ROOT_BLADE_MISC_DIR_32)/$(SUBDIR64) 35 ROOT_BLADE_KERN_DIR_32 = $(ROOT_BLADE_MOD_DIR) 36 ROOT_BLADE_KERN_DIR_64 = $(ROOT_BLADE_MOD_DIR)/$(SUBDIR64) 37 ROOT_BLADE_DRV_DIR_32 = $(ROOT_BLADE_MOD_DIR)/drv 38 ROOT_BLADE_DRV_DIR_64 = $(ROOT_BLADE_MOD_DIR)/drv/$(SUBDIR64) 39 40 ROOT_BLADE_KERN_DIR = $(ROOT_BLADE_KERN_DIR_$(CLASS)) 41 ROOT_BLADE_DRV_DIR = $(ROOT_BLADE_DRV_DIR_$(CLASS)) 42 ROOT_BLADE_MISC_DIR = $(ROOT_BLADE_MISC_DIR_$(CLASS)) 43 44 ROOT_PLAT_MOD_DIRS += $(ROOT_BLADE_MOD_DIR) 45 ROOT_PLAT_MISC_DIRS += $(ROOT_BLADE_MISC_DIR) 46 47 48 USR_SUN4U_PLAT_DIR = $(USR_PLAT_DIR)/sun4u 49 USR_BLADE_DIR = $(USR_PLAT_DIR)/SUNW,Serverblade1 50 USR_BLADE_INC_DIR = $(USR_BLADE_DIR)/include 51 USR_BLADE_ISYS_DIR = $(USR_BLADE_INC_DIR)/sys 52 USR_BLADE_SBIN_DIR = $(USR_BLADE_DIR)/sbin 53 USR_BLADE_LIB_DIR = $(USR_BLADE_DIR)/lib 54 55 56 BLADE_LINT_LIB_DIR= $(UTSBASE)/$(PLATFORM)/blade/lint-libs/$(OBJS_DIR) 57 58 59 # Define Objects 60 # 61 BLADE_OBJS = blade.o 62 63 # 64 # Option conf file 65 BLADE_OPTION = options 66 67 # 68 # Include the makefiles which define build rule templates, the 69 # collection of files per module, and a few specific flags. Note 70 # that order is significant, just as with an include path. The 71 # first build rule template which matches the files name will be 72 # used. By including these in order from most machine dependent 73 # to most machine independent, we allow a machine dependent file 74 # to be used in preference over a machine independent version 75 # (Such as a machine specific optimization, which preserves the 76 # interfaces.) 77 # 78 79 include $(UTSBASE)/sun4u/blade/Makefile.files 80 81 # 82 # Include common rules. 83 # 84 include $(UTSBASE)/sun4u/Makefile.sun4u 85 86 # 87 # Define modules (must come after Makefile.sun4u). 88 # 89 BLADE_KMODS = platmod 90 BLADE_KMODS += bscbus 91 BLADE_KMODS += bscv 92 93 LINTS_DIR = $(OBJS_DIR) 94 LINT_LIB_DIR = $(UTSBASE)/$(PLATFORM)/blade/lint-libs/$(OBJS_DIR) 95 LINT_LIB= $(UTSBASE)/$(PLATFORM)/lint-libs/$(OBJS_DIR)/llib-lunix.ln 96 GEN_LINT_LIB= $(UTSBASE)/$(PLATFORM)/lint-libs/$(OBJS_DIR)/llib-lgenunix.ln 97 98 99 # 100 # Define the actual specific platforms 101 # 102 MACHINE_DEFS += -D$(PLATFORM) -D_MACHDEP -DSFMMU 103 104 # 105 # Define for inline pre-processing since 106 # cpp not smart about v9 yet. 107 # 108 #CPP_DEFS_32 = 109 #CPP_DEFS_64 = -D__sparcv9 110 #CPP_DEFS = $(CPP_DEFS_$(CLASS)) 111 112 # 113 # For now, disable these lint checks; maintainers should endeavor 114 # to investigate and remove these for maximum lint coverage. 115 # Please do not carry these forward to new Makefiles. 116 # 117 LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 118 LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 119 LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED 120 LINTTAGS += -erroff=E_STATIC_UNUSED 121 LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW 122 LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV --- EOF ---