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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2004 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26#pragma ident "%Z%%M% %I% %E% SMI" 27# 28# Global definitions for sun4u snowbird implementation specific modules. 29# uts/sun4u/snowbird/Makefile.snowbird 30# 31 32# 33# Define directories. 34# 35MONTECARLO = SUNW,UltraSPARC-IIi-Netract 36SNOWBIRD = SUNW,Netra-CP2300 37ROOT_MONTECARLO_DIR = $(ROOT_PLAT_DIR)/$(MONTECARLO) 38ROOT_SNOWBIRD_DIR = $(ROOT_PLAT_DIR)/SUNW,Netra-CP2300 39ROOT_SNOWBIRD_MOD_DIR = $(ROOT_SNOWBIRD_DIR)/kernel 40ROOT_SNOWBIRD_MISC_DIR_32 = $(ROOT_SNOWBIRD_DIR)/kernel/misc 41ROOT_SNOWBIRD_MISC_DIR_64 = $(ROOT_SNOWBIRD_MISC_DIR_32)/$(SUBDIR64) 42ROOT_SNOWBIRD_KERN_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR) 43ROOT_SNOWBIRD_KERN_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/$(SUBDIR64) 44ROOT_SNOWBIRD_DRV_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR)/drv 45ROOT_SNOWBIRD_DRV_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/drv/$(SUBDIR64) 46ROOT_SNOWBIRD_DRV_LINK_32 = $(ROOT_SNOWBIRD_DRV_DIR_32:$(ROOT_SNOWBIRD_DIR)%=../../../$(MONTECARLO)%) 47ROOT_SNOWBIRD_TOD_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR)/tod 48ROOT_SNOWBIRD_TOD_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/tod/$(SUBDIR64) 49ROOT_SNOWBIRD_DACF_DIR_32 = $(ROOT_SNOWBIRD_MOD_DIR)/dacf 50ROOT_SNOWBIRD_DACF_DIR_64 = $(ROOT_SNOWBIRD_MOD_DIR)/dacf/$(SUBDIR64) 51ROOT_SNOWBIRD_DACF_LINK_64 = $(ROOT_SNOWBIRD_DACF_DIR_64:$(ROOT_SNOWBIRD_DIR)%=../../../../$(MONTECARLO)%) 52 53ROOT_SNOWBIRD_KERN_DIR = $(ROOT_SNOWBIRD_KERN_DIR_$(CLASS)) 54ROOT_SNOWBIRD_DRV_DIR = $(ROOT_SNOWBIRD_DRV_DIR_$(CLASS)) 55ROOT_SNOWBIRD_TOD_DIR = $(ROOT_SNOWBIRD_TOD_DIR_$(CLASS)) 56ROOT_SNOWBIRD_MISC_DIR = $(ROOT_SNOWBIRD_MISC_DIR_$(CLASS)) 57ROOT_SNOWBIRD_DACF_DIR = $(ROOT_SNOWBIRD_DACF_DIR_$(CLASS)) 58 59ROOT_PLAT_MOD_DIRS += $(ROOT_SNOWBIRD_MOD_DIR) 60ROOT_PLAT_MISC_DIRS += $(ROOT_SNOWBIRD_MISC_DIR) 61ROOT_PLAT_DRV_DIRS += $(ROOT_SNOWBIRD_DRV_DIR) 62ROOT_PLAT_DACF_DIRS += $(ROOT_SNOWBIRD_DACF_DIR) 63 64ROOT_SNOWBIRD_DACF_LINK = $(ROOT_SNOWBIRD_DACF_LINK_$(CLASS)) 65ROOT_SNOWBIRD_DRV_LINK = $(ROOT_SNOWBIRD_DRV_LINK_$(CLASS)) 66 67USR_SNOWBIRD_DIR = $(USR_PLAT_DIR)/SUNW,Netra-CP2300 68USR_SNOWBIRD_INC_DIR = $(USR_SNOWBIRD_DIR)/include 69USR_SNOWBIRD_SBIN_DIR = $(USR_SNOWBIRD_DIR)/sbin 70USR_SNOWBIRD_SBIN_EEPROM = $(USR_SNOWBIRD_SBIN_DIR)/eeprom 71USR_SNOWBIRD_SBIN_PRTDIAG = $(USR_SNOWBIRD_SBIN_DIR)/prtdiag 72USR_SNOWBIRD_SBIN_TRAPSTAT = $(USR_SNOWBIRD_SBIN_DIR)/trapstat 73USR_SNOWBIRD_SBIN_FRUADM = $(USR_SNOWBIRD_SBIN_DIR)/fruadm 74USR_SNOWBIRD_LIB_DIR = $(USR_SNOWBIRD_DIR)/lib 75USR_SNOWBIRD_ISYS_DIR = $(USR_SNOWBIRD_INC_DIR)/sys 76 77 78SNOWBIRD_LINT_LIB_DIR= $(UTSBASE)/$(PLATFORM)/snowbird/lint-libs/$(OBJS_DIR) 79 80 81# Define Objects 82# 83SNOWBIRD_OBJS = snowbird.o 84 85# 86# Define modules. 87# 88SNOWBIRD_KMODS = todds1307 platmod 89 90# 91# Include the makefiles which define build rule templates, the 92# collection of files per module, and a few specific flags. Note 93# that order is significant, just as with an include path. The 94# first build rule template which matches the files name will be 95# used. By including these in order from most machine dependent 96# to most machine independent, we allow a machine dependent file 97# to be used in preference over a machine independent version 98# (Such as a machine specific optimization, which preserves the 99# interfaces.) 100# 101 102include $(UTSBASE)/sun4u/snowbird/Makefile.files 103# 104# Include common rules. 105# 106include $(UTSBASE)/sun4u/Makefile.sun4u 107 108# 109# Define the actual specific platforms 110# 111MACHINE_DEFS += -D$(PLATFORM) -D_MACHDEP -DSFMMU 112MACHINE_DEFS += -D_SNOWBIRD 113