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# 23# uts/intel/Makefile.files 24# 25# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 26# Use is subject to license terms. 27# 28# ident "%Z%%M% %I% %E% SMI" 29# 30# This Makefile defines all file modules and build rules for the 31# directory uts/intel and its children. These are the source files which 32# are specific to x86 processor architectures. 33# 34 35# 36# Core (unix) objects 37# 38CORE_OBJS += \ 39 copy.o \ 40 copy_subr.o \ 41 cpc_subr.o \ 42 ddi_arch.o \ 43 ddi_i86.o \ 44 ddi_i86_asm.o \ 45 desctbls.o \ 46 desctbls_asm.o \ 47 exception.o \ 48 float.o \ 49 fpu.o \ 50 i86_subr.o \ 51 lwp_private.o \ 52 lock_prim.o \ 53 ovbcopy.o \ 54 polled_io.o \ 55 sseblk.o \ 56 sundep.o \ 57 swtch.o \ 58 sysi86.o 59 60# 61# 64-bit multiply/divide compiler helper routines 62# used only for ia32 63# 64 65SPECIAL_OBJS_32 += \ 66 muldiv.o 67 68# 69# Generic-unix Module 70# 71GENUNIX_OBJS += \ 72 archdep.o \ 73 arch_kdi.o \ 74 getcontext.o \ 75 install_utrap.o \ 76 prom_enter.o \ 77 prom_exit.o \ 78 prom_panic.o \ 79 sendsig.o \ 80 syscall.o 81 82 83# 84# PROM Routines 85# 86GENUNIX_OBJS += \ 87 prom_env.o \ 88 prom_emul.o \ 89 prom_getchar.o \ 90 prom_init.o \ 91 prom_node.o \ 92 prom_printf.o \ 93 prom_prop.o \ 94 prom_putchar.o \ 95 prom_reboot.o \ 96 prom_version.o 97 98# 99# file system modules 100# 101CORE_OBJS += \ 102 prmachdep.o 103 104XMEMFS_OBJS += \ 105 seg_xmem.o \ 106 xmem_dir.o \ 107 xmem_subr.o \ 108 xmem_vfsops.o \ 109 xmem_vnops.o 110 111LX_PROC_OBJS += \ 112 lx_prsubr.o \ 113 lx_prvfsops.o \ 114 lx_prvnops.o 115 116LX_AUTOFS_OBJS += \ 117 lx_autofs.o 118 119# 120# Driver modules 121# 122CMDK_OBJS += cmdk.o 123 124CMLB_OBJS += cmlb.o 125 126DADK_OBJS += dadk.o 127 128GDA_OBJS += gda.o 129 130SD_OBJS += sd.o sd_xbuf.o 131 132STRATEGY_OBJS += strategy.o 133 134VGATEXT_OBJS += vgatext.o vgasubr.o 135 136# 137# misc. modules 138# 139KRTLD_BOOT_OBJS += \ 140 kobj_boot.o 141 142KRTLD_OBJS += \ 143 bootrd.o \ 144 ufsops.o \ 145 hsfs.o \ 146 doreloc.o \ 147 kobj_convrelstr.o \ 148 kobj_crt.o \ 149 kobj_isa.o \ 150 kobj_reloc.o 151 152# 153# misc. modules 154# 155ACPI_INTP_OBJS += acpi_inf.o acpi_mod.o acpi_ml.o \ 156 acpi_decl.o acpi_exe.o acpi_gram.o acpi_io.o acpi_lex.o \ 157 acpi_name.o acpi_ns.o acpi_op1.o acpi_op2.o acpi_rule.o \ 158 acpi_tab.o acpi_thr.o acpi_val.o \ 159 acpi_exc.o acpi_bst.o acpi_node.o acpi_stk.o acpi_par.o 160 161FBT_OBJS += fbt.o 162SDT_OBJS += sdt.o 163 164# 165# Pentium Performance Counter BackEnd module 166# 167P123_PCBE_OBJS = p123_pcbe.o 168 169# 170# Pentium 4 Performance Counter BackEnd module 171# 172P4_PCBE_OBJS = p4_pcbe.o 173 174# 175# AMD Opteron/Athlon64 Performance Counter BackEnd module 176# 177OPTERON_PCBE_OBJS = opteron_pcbe.o 178 179# 180# AAC module 181# 182AAC_OBJS = aac.o aac_ioctl.o 183 184# 185# AMR module 186# 187AMR_OBJS = amr.o 188 189# 190# Brand modules 191# 192SN1_BRAND_OBJS = sn1_brand.o sn1_brand_asm.o 193 194LX_BRAND_OBJS = \ 195 lx_brand.o \ 196 lx_brand_asm.o \ 197 lx_brk.o \ 198 lx_clone.o \ 199 lx_futex.o \ 200 lx_getpid.o \ 201 lx_id.o \ 202 lx_kill.o \ 203 lx_misc.o \ 204 lx_modify_ldt.o \ 205 lx_pid.o \ 206 lx_sched.o \ 207 lx_signum.o \ 208 lx_syscall.o \ 209 lx_sysinfo.o \ 210 lx_thread_area.o 211 212# 213# special files 214# 215MODSTUB_OBJ += \ 216 modstubs.o 217 218BOOTDEV_OBJS += \ 219 bootdev.o 220 221INC_PATH += -I$(UTSBASE)/intel 222