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 (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved. 23# 24# 25# Global definitions for sun4u snowbird implementation specific modules. 26# uts/sun4u/snowbird/Makefile.snowbird 27# 28 29# 30# Define directories. 31# 32MONTECARLO = SUNW,UltraSPARC-IIi-Netract 33SNOWBIRD = SUNW,Netra-CP2300 34ROOT_MONTECARLO_DIR = $(ROOT_PLAT_DIR)/$(MONTECARLO) 35ROOT_SNOWBIRD_DIR = $(ROOT_PLAT_DIR)/SUNW,Netra-CP2300 36ROOT_SNOWBIRD_MOD_DIR = $(ROOT_SNOWBIRD_DIR)/kernel 37ROOT_SNOWBIRD_MISC_DIR_32 = $(ROOT_SNOWBIRD_DIR)/kernel/misc 38ROOT_SNOWBIRD_MISC_DIR_64 = $(ROOT_SNOWBIRD_MISC_DIR_32)/$(SUBDIR64) 39ROOT_SNOWBIRD_KERN_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR) 40ROOT_SNOWBIRD_KERN_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/$(SUBDIR64) 41ROOT_SNOWBIRD_DRV_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR)/drv 42ROOT_SNOWBIRD_DRV_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/drv/$(SUBDIR64) 43ROOT_SNOWBIRD_DRV_LINK_32 = $(ROOT_SNOWBIRD_DRV_DIR_32:$(ROOT_SNOWBIRD_DIR)%=../../../$(MONTECARLO)%) 44ROOT_SNOWBIRD_TOD_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR)/tod 45ROOT_SNOWBIRD_TOD_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/tod/$(SUBDIR64) 46ROOT_SNOWBIRD_DACF_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR)/dacf 47ROOT_SNOWBIRD_DACF_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/dacf/$(SUBDIR64) 48ROOT_SNOWBIRD_DACF_LINK_64 = $(ROOT_SNOWBIRD_DACF_DIR_64:$(ROOT_SNOWBIRD_DIR)%=../../../../$(MONTECARLO)%) 49 50ROOT_SNOWBIRD_KERN_DIR = $(ROOT_SNOWBIRD_KERN_DIR_$(CLASS)) 51ROOT_SNOWBIRD_DRV_DIR = $(ROOT_SNOWBIRD_DRV_DIR_$(CLASS)) 52ROOT_SNOWBIRD_TOD_DIR = $(ROOT_SNOWBIRD_TOD_DIR_$(CLASS)) 53ROOT_SNOWBIRD_MISC_DIR = $(ROOT_SNOWBIRD_MISC_DIR_$(CLASS)) 54ROOT_SNOWBIRD_DACF_DIR = $(ROOT_SNOWBIRD_DACF_DIR_$(CLASS)) 55 56ROOT_PLAT_MOD_DIRS += $(ROOT_SNOWBIRD_MOD_DIR) 57ROOT_PLAT_MISC_DIRS += $(ROOT_SNOWBIRD_MISC_DIR) 58ROOT_PLAT_DRV_DIRS += $(ROOT_SNOWBIRD_DRV_DIR) 59ROOT_PLAT_DACF_DIRS += $(ROOT_SNOWBIRD_DACF_DIR) 60 61ROOT_SNOWBIRD_DACF_LINK = $(ROOT_SNOWBIRD_DACF_LINK_$(CLASS)) 62ROOT_SNOWBIRD_DRV_LINK = $(ROOT_SNOWBIRD_DRV_LINK_$(CLASS)) 63 64USR_SNOWBIRD_DIR = $(USR_PLAT_DIR)/SUNW,Netra-CP2300 65USR_SNOWBIRD_INC_DIR = $(USR_SNOWBIRD_DIR)/include 66USR_SNOWBIRD_SBIN_DIR = $(USR_SNOWBIRD_DIR)/sbin 67USR_SNOWBIRD_SBIN_PRTDIAG = $(USR_SNOWBIRD_SBIN_DIR)/prtdiag 68USR_SNOWBIRD_SBIN_FRUADM = $(USR_SNOWBIRD_SBIN_DIR)/fruadm 69USR_SNOWBIRD_LIB_DIR = $(USR_SNOWBIRD_DIR)/lib 70USR_SNOWBIRD_ISYS_DIR = $(USR_SNOWBIRD_INC_DIR)/sys 71 72 73SNOWBIRD_LINT_LIB_DIR= $(UTSBASE)/$(PLATFORM)/snowbird/lint-libs/$(OBJS_DIR) 74 75 76# Define Objects 77# 78SNOWBIRD_OBJS = snowbird.o 79 80# 81# Define modules. 82# 83SNOWBIRD_KMODS = todds1307 platmod 84 85# 86# Include the makefiles which define build rule templates, the 87# collection of files per module, and a few specific flags. Note 88# that order is significant, just as with an include path. The 89# first build rule template which matches the files name will be 90# used. By including these in order from most machine dependent 91# to most machine independent, we allow a machine dependent file 92# to be used in preference over a machine independent version 93# (Such as a machine specific optimization, which preserves the 94# interfaces.) 95# 96 97include $(UTSBASE)/sun4u/snowbird/Makefile.files 98# 99# Include common rules. 100# 101include $(UTSBASE)/sun4u/Makefile.sun4u 102 103# 104# Define the actual specific platforms 105# 106MACHINE_DEFS += -D$(PLATFORM) -D_MACHDEP -DSFMMU 107MACHINE_DEFS += -D_SNOWBIRD 108 109# 110# For now, disable these lint checks; maintainers should endeavor 111# to investigate and remove these for maximum lint coverage. 112# Please do not carry these forward to new Makefiles. 113# 114LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 115 116