17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 503831d35Sstevel# Common Development and Distribution License (the "License"). 603831d35Sstevel# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 217c478bd9Sstevel@tonic-gate# 22*a83cadceSkm84432# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate# Use is subject to license terms. 247c478bd9Sstevel@tonic-gate# 257c478bd9Sstevel@tonic-gate#pragma ident "%Z%%M% %I% %E% SMI" 267c478bd9Sstevel@tonic-gate# 277c478bd9Sstevel@tonic-gate# This Makefile defines all file modules for the directory 287c478bd9Sstevel@tonic-gate# uts/sun4u/starcat and its children. These are the source files which 297c478bd9Sstevel@tonic-gate# are starcat "implementation architecture" dependent. 307c478bd9Sstevel@tonic-gate# 317c478bd9Sstevel@tonic-gate 327c478bd9Sstevel@tonic-gate# 337c478bd9Sstevel@tonic-gate# Object lists 347c478bd9Sstevel@tonic-gate# 3503831d35Sstevel 3603831d35SstevelSTARCAT_OBJS = starcat.o starcat_asm.o plat_ecc_unum.o plat_ecc_dimm.o 3703831d35Sstevel 3803831d35Sstevel# 397c478bd9Sstevel@tonic-gate# Starcat specific driver related modules 407c478bd9Sstevel@tonic-gate# 417c478bd9Sstevel@tonic-gate 4203831d35SstevelAXQ_OBJS += axq.o 4303831d35SstevelCVC_OBJS += cvc.o 447c478bd9Sstevel@tonic-gateCVCREDIR_OBJS += cvcredir.o 4503831d35SstevelDMAN_OBJS += dman.o dman_domain.o 4603831d35SstevelDRMACH_OBJS += drmach.o drmach_asm.o dr_util.o drmach_err.o 4703831d35SstevelFCGP2_OBJS += fcgp2.o 4803831d35SstevelGPTWO_PCI_OBJS += gptwo_pci.o 4903831d35SstevelIOSRAM_OBJS += iosram.o 5003831d35SstevelMBOXSC_OBJS += mboxsc.o 5103831d35SstevelSC_GPTWO_OBJS += sc_gptwocfg.o 527c478bd9Sstevel@tonic-gateSC_PCICFG_OBJS += sc_pcicfg.o 5303831d35SstevelSCHPC_OBJS += schpc.o 5403831d35SstevelSCKMDRV_OBJS += sckmdrv.o 5503831d35SstevelSCOSMB_OBJS += scosmb.o 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate# 587c478bd9Sstevel@tonic-gate# Miscellaneous 597c478bd9Sstevel@tonic-gate# 607c478bd9Sstevel@tonic-gateINC_PATH += -I$(UTSBASE)/sun4u/starcat 617c478bd9Sstevel@tonic-gateINC_PATH += -I$(UTSBASE)/sun4u/starcat/sys 6203831d35Sstevel 6303831d35Sstevel# 6403831d35Sstevel# Since assym.h is a derived file, the dependency must be explicit for 6503831d35Sstevel# all files including this file. (This is only actually required in the 6603831d35Sstevel# instance when the .nse_depinfo file does not exist.) It may seem that 6703831d35Sstevel# the lint targets should also have a similar dependency, but they don't 6803831d35Sstevel# since only C headers are included when #defined(lint) is true. 6903831d35Sstevel# 7003831d35SstevelASSYM_DEPS += drmach_asm.o 71