1*7c478bd9Sstevel@tonic-gate# 2*7c478bd9Sstevel@tonic-gate# CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate# 4*7c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate# (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate# with the License. 8*7c478bd9Sstevel@tonic-gate# 9*7c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate# and limitations under the License. 13*7c478bd9Sstevel@tonic-gate# 14*7c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate# 20*7c478bd9Sstevel@tonic-gate# CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate# 22*7c478bd9Sstevel@tonic-gate# 23*7c478bd9Sstevel@tonic-gate# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate# Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate# 26*7c478bd9Sstevel@tonic-gate#pragma ident "%Z%%M% %I% %E% SMI" 27*7c478bd9Sstevel@tonic-gate# 28*7c478bd9Sstevel@tonic-gate# uts/sun/Makefile.files 29*7c478bd9Sstevel@tonic-gate# 30*7c478bd9Sstevel@tonic-gate# This Makefile defines all file modules and build rules for the 31*7c478bd9Sstevel@tonic-gate# directory uts/sun and it's children. These are the source files which 32*7c478bd9Sstevel@tonic-gate# are common to all sun implementations. 33*7c478bd9Sstevel@tonic-gate# 34*7c478bd9Sstevel@tonic-gate 35*7c478bd9Sstevel@tonic-gate# 36*7c478bd9Sstevel@tonic-gate# object lists 37*7c478bd9Sstevel@tonic-gate# 38*7c478bd9Sstevel@tonic-gate# XXX - vuid_* ?, files indicates these should be in the win and 39*7c478bd9Sstevel@tonic-gate# kbd modules.... What gives? 40*7c478bd9Sstevel@tonic-gate# 41*7c478bd9Sstevel@tonic-gate# 42*7c478bd9Sstevel@tonic-gate# generic-unix module 43*7c478bd9Sstevel@tonic-gate# 44*7c478bd9Sstevel@tonic-gateGENUNIX_OBJS += \ 45*7c478bd9Sstevel@tonic-gate mem_kern.o 46*7c478bd9Sstevel@tonic-gate 47*7c478bd9Sstevel@tonic-gate# 48*7c478bd9Sstevel@tonic-gate# Driver Modules 49*7c478bd9Sstevel@tonic-gate# 50*7c478bd9Sstevel@tonic-gateAUDIOCS_OBJS += audio_4231.o audio_4231_apcdma.o audio_4231_eb2dma.o 51*7c478bd9Sstevel@tonic-gate 52*7c478bd9Sstevel@tonic-gateBPP_OBJS += bpp.o 53*7c478bd9Sstevel@tonic-gate 54*7c478bd9Sstevel@tonic-gateCGSIX_OBJS += cgsix.o 55*7c478bd9Sstevel@tonic-gate 56*7c478bd9Sstevel@tonic-gateDBRI_OBJS += dbri.o dbri_conf.o dbri_connect.o \ 57*7c478bd9Sstevel@tonic-gate dbri_driver.o dbri_isdn.o dbri_isr.o \ 58*7c478bd9Sstevel@tonic-gate dbri_mmcodec.o dbri_pipe.o dbri_subr.o 59*7c478bd9Sstevel@tonic-gate 60*7c478bd9Sstevel@tonic-gateDMA_OBJS += dmaga.o 61*7c478bd9Sstevel@tonic-gate 62*7c478bd9Sstevel@tonic-gateESP_OBJS += esp.o 63*7c478bd9Sstevel@tonic-gate 64*7c478bd9Sstevel@tonic-gateFAS_OBJS += fas.o fas_callbacks.o 65*7c478bd9Sstevel@tonic-gate 66*7c478bd9Sstevel@tonic-gateFD_OBJS += fd.o 67*7c478bd9Sstevel@tonic-gate 68*7c478bd9Sstevel@tonic-gateIFP_OBJS += ifp.o ifp_fw.o 69*7c478bd9Sstevel@tonic-gate 70*7c478bd9Sstevel@tonic-gateISP_OBJS += isp.o isp_sbus_fw.o isp_1040_fw.o isp_cmds.o 71*7c478bd9Sstevel@tonic-gate 72*7c478bd9Sstevel@tonic-gateMS_OBJS += ms.o 73*7c478bd9Sstevel@tonic-gate 74*7c478bd9Sstevel@tonic-gateSF_OBJS += sf.o 75*7c478bd9Sstevel@tonic-gate 76*7c478bd9Sstevel@tonic-gateHME_OBJS += hme.o 77*7c478bd9Sstevel@tonic-gate 78*7c478bd9Sstevel@tonic-gateERI_OBJS += eri.o 79*7c478bd9Sstevel@tonic-gate 80*7c478bd9Sstevel@tonic-gateSBUSMEM_OBJS += sbusmem.o 81*7c478bd9Sstevel@tonic-gate 82*7c478bd9Sstevel@tonic-gateSD_OBJS += sd.o sd_xbuf.o 83*7c478bd9Sstevel@tonic-gate 84*7c478bd9Sstevel@tonic-gateDAD_OBJS += dad.o 85*7c478bd9Sstevel@tonic-gate 86*7c478bd9Sstevel@tonic-gateDADA_OBJS += dcd_hba.o dcd_transport.o \ 87*7c478bd9Sstevel@tonic-gate dcd_control.o dcd_resource.o dcd_confsubr.o dcd_subr.o \ 88*7c478bd9Sstevel@tonic-gate dcd_confdata.o 89*7c478bd9Sstevel@tonic-gate 90*7c478bd9Sstevel@tonic-gateATA_OBJS += ata_common.o atapi.o ata_disk.o ghd.o ghd_dma.o ghd_scsi.o \ 91*7c478bd9Sstevel@tonic-gate ghd_debug.o ghd_scsa.o ghd_gcmd.o ghd_queue.o ghd_timer.o \ 92*7c478bd9Sstevel@tonic-gate ghd_waitq.o cmd.o acersb.o sil.o 93*7c478bd9Sstevel@tonic-gate 94*7c478bd9Sstevel@tonic-gateSSD_OBJS += sd.o sd_xbuf.o 95*7c478bd9Sstevel@tonic-gate 96*7c478bd9Sstevel@tonic-gateSOCAL_OBJS += socal.o socal_ucode.o 97*7c478bd9Sstevel@tonic-gate 98*7c478bd9Sstevel@tonic-gateSTP4020_OBJS += stp4020.o 99*7c478bd9Sstevel@tonic-gate 100*7c478bd9Sstevel@tonic-gateWSDRV_OBJS += wsdrv.o 101*7c478bd9Sstevel@tonic-gate 102*7c478bd9Sstevel@tonic-gateZS_OBJS += zs_async.o zs_common.o 103*7c478bd9Sstevel@tonic-gate 104*7c478bd9Sstevel@tonic-gateZSH_OBJS += zs_hdlc.o 105*7c478bd9Sstevel@tonic-gate 106*7c478bd9Sstevel@tonic-gate# 107*7c478bd9Sstevel@tonic-gate# streams modules 108*7c478bd9Sstevel@tonic-gate# 109*7c478bd9Sstevel@tonic-gate 110*7c478bd9Sstevel@tonic-gateTTYMUX_OBJS += ttymux.o ttymux_ioctl.o 111*7c478bd9Sstevel@tonic-gate 112*7c478bd9Sstevel@tonic-gate# 113*7c478bd9Sstevel@tonic-gate# Section 3: Misc. 114*7c478bd9Sstevel@tonic-gate# 115*7c478bd9Sstevel@tonic-gateLINT_DEFS += -Dsun 116*7c478bd9Sstevel@tonic-gate 117*7c478bd9Sstevel@tonic-gateINC_PATH += -I$(UTSBASE)/sun 118