xref: /illumos-gate/usr/src/uts/intel/Makefile.files (revision 830d82f7)
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
5*830d82f7Spl# Common Development and Distribution License (the "License").
6*830d82f7Spl# 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#
227c478bd9Sstevel@tonic-gate# uts/intel/Makefile.files
237c478bd9Sstevel@tonic-gate#
24*830d82f7Spl# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate# Use is subject to license terms.
267c478bd9Sstevel@tonic-gate#
277c478bd9Sstevel@tonic-gate# ident	"%Z%%M%	%I%	%E% SMI"
287c478bd9Sstevel@tonic-gate#
297c478bd9Sstevel@tonic-gate#	This Makefile defines all file modules and build rules for the
30fb9f9b97Skupfer# directory uts/intel and its children. These are the source files which
317c478bd9Sstevel@tonic-gate# are specific to x86 processor architectures.
327c478bd9Sstevel@tonic-gate#
337c478bd9Sstevel@tonic-gate
347c478bd9Sstevel@tonic-gate#
357c478bd9Sstevel@tonic-gate#	Core (unix) objects
367c478bd9Sstevel@tonic-gate#
377c478bd9Sstevel@tonic-gateCORE_OBJS +=		\
387c478bd9Sstevel@tonic-gate	copy.o		\
397c478bd9Sstevel@tonic-gate	copy_subr.o	\
407c478bd9Sstevel@tonic-gate	cpc_subr.o	\
417c478bd9Sstevel@tonic-gate	ddi_arch.o	\
427c478bd9Sstevel@tonic-gate	ddi_i86.o	\
437c478bd9Sstevel@tonic-gate	ddi_i86_asm.o	\
447c478bd9Sstevel@tonic-gate	desctbls.o	\
457c478bd9Sstevel@tonic-gate	desctbls_asm.o	\
467c478bd9Sstevel@tonic-gate	exception.o	\
477c478bd9Sstevel@tonic-gate	float.o		\
487c478bd9Sstevel@tonic-gate	fpu.o		\
497c478bd9Sstevel@tonic-gate	i86_subr.o	\
507c478bd9Sstevel@tonic-gate	lwp_private.o	\
517c478bd9Sstevel@tonic-gate	lock_prim.o	\
527c478bd9Sstevel@tonic-gate	ovbcopy.o	\
537c478bd9Sstevel@tonic-gate	polled_io.o	\
547c478bd9Sstevel@tonic-gate	sseblk.o	\
557c478bd9Sstevel@tonic-gate	sundep.o	\
567c478bd9Sstevel@tonic-gate	swtch.o		\
577c478bd9Sstevel@tonic-gate	sysi86.o
587c478bd9Sstevel@tonic-gate
5989518a1cSdmick#
6089518a1cSdmick# 64-bit multiply/divide compiler helper routines
6189518a1cSdmick# used only for ia32
6289518a1cSdmick#
6389518a1cSdmick
6489518a1cSdmickSPECIAL_OBJS_32 +=	\
6589518a1cSdmick	muldiv.o
6689518a1cSdmick
677c478bd9Sstevel@tonic-gate#
687c478bd9Sstevel@tonic-gate#	Generic-unix Module
697c478bd9Sstevel@tonic-gate#
707c478bd9Sstevel@tonic-gateGENUNIX_OBJS +=		\
717c478bd9Sstevel@tonic-gate	archdep.o	\
727c478bd9Sstevel@tonic-gate	arch_kdi.o	\
737c478bd9Sstevel@tonic-gate	getcontext.o	\
747c478bd9Sstevel@tonic-gate	install_utrap.o	\
757c478bd9Sstevel@tonic-gate	prom_enter.o	\
767c478bd9Sstevel@tonic-gate	prom_exit.o	\
777c478bd9Sstevel@tonic-gate	prom_panic.o	\
787c478bd9Sstevel@tonic-gate	sendsig.o	\
797c478bd9Sstevel@tonic-gate	syscall.o
807c478bd9Sstevel@tonic-gate
817c478bd9Sstevel@tonic-gate
827c478bd9Sstevel@tonic-gate#
837c478bd9Sstevel@tonic-gate#	PROM Routines
847c478bd9Sstevel@tonic-gate#
857c478bd9Sstevel@tonic-gateGENUNIX_OBJS +=		\
867c478bd9Sstevel@tonic-gate	prom_env.o	\
877c478bd9Sstevel@tonic-gate	prom_emul.o	\
887c478bd9Sstevel@tonic-gate	prom_getchar.o	\
897c478bd9Sstevel@tonic-gate	prom_init.o	\
907c478bd9Sstevel@tonic-gate	prom_node.o	\
917c478bd9Sstevel@tonic-gate	prom_printf.o	\
927c478bd9Sstevel@tonic-gate	prom_prop.o	\
937c478bd9Sstevel@tonic-gate	prom_putchar.o	\
947c478bd9Sstevel@tonic-gate	prom_reboot.o	\
957c478bd9Sstevel@tonic-gate	prom_version.o
967c478bd9Sstevel@tonic-gate
977c478bd9Sstevel@tonic-gate#
987c478bd9Sstevel@tonic-gate#	file system modules
997c478bd9Sstevel@tonic-gate#
1007c478bd9Sstevel@tonic-gateCORE_OBJS +=		\
1017c478bd9Sstevel@tonic-gate	prmachdep.o
1027c478bd9Sstevel@tonic-gate
1037c478bd9Sstevel@tonic-gateXMEMFS_OBJS +=		\
1047c478bd9Sstevel@tonic-gate	seg_xmem.o	\
1057c478bd9Sstevel@tonic-gate	xmem_dir.o	\
1067c478bd9Sstevel@tonic-gate	xmem_subr.o	\
1077c478bd9Sstevel@tonic-gate	xmem_vfsops.o	\
1087c478bd9Sstevel@tonic-gate	xmem_vnops.o
1097c478bd9Sstevel@tonic-gate
1107c478bd9Sstevel@tonic-gate#
1117c478bd9Sstevel@tonic-gate#	Driver modules
1127c478bd9Sstevel@tonic-gate#
113507c3241SmlfCMDK_OBJS +=	cmdk.o
1147c478bd9Sstevel@tonic-gate
1153ccda647SlcleeCMLB_OBJS += cmlb.o
1163ccda647Slclee
117507c3241SmlfDADK_OBJS +=	dadk.o
118507c3241Smlf
119507c3241SmlfGDA_OBJS +=	gda.o
120507c3241Smlf
121507c3241SmlfSD_OBJS += sd.o sd_xbuf.o
122507c3241Smlf
123507c3241SmlfSTRATEGY_OBJS += strategy.o
124507c3241Smlf
1257c478bd9Sstevel@tonic-gateVGATEXT_OBJS += vgatext.o vgasubr.o
1267c478bd9Sstevel@tonic-gate
1277c478bd9Sstevel@tonic-gate#
1287c478bd9Sstevel@tonic-gate#	misc. modules
1297c478bd9Sstevel@tonic-gate#
1307c478bd9Sstevel@tonic-gateKRTLD_BOOT_OBJS +=	\
1317c478bd9Sstevel@tonic-gate	kobj_boot.o
1327c478bd9Sstevel@tonic-gate
1337c478bd9Sstevel@tonic-gateKRTLD_OBJS +=		\
1347c478bd9Sstevel@tonic-gate	bootrd.o	\
1357c478bd9Sstevel@tonic-gate	ufsops.o	\
1367c478bd9Sstevel@tonic-gate	hsfs.o		\
1377c478bd9Sstevel@tonic-gate	doreloc.o	\
1387c478bd9Sstevel@tonic-gate	kobj_convrelstr.o \
1397c478bd9Sstevel@tonic-gate	kobj_crt.o	\
1407c478bd9Sstevel@tonic-gate	kobj_isa.o	\
1417c478bd9Sstevel@tonic-gate	kobj_reloc.o
1427c478bd9Sstevel@tonic-gate
1437c478bd9Sstevel@tonic-gate#
1447c478bd9Sstevel@tonic-gate#	misc. modules
1457c478bd9Sstevel@tonic-gate#
1467c478bd9Sstevel@tonic-gateACPI_INTP_OBJS += acpi_inf.o acpi_mod.o  acpi_ml.o \
1477c478bd9Sstevel@tonic-gate	acpi_decl.o acpi_exe.o acpi_gram.o acpi_io.o acpi_lex.o \
1487c478bd9Sstevel@tonic-gate	acpi_name.o acpi_ns.o acpi_op1.o acpi_op2.o acpi_rule.o \
1497c478bd9Sstevel@tonic-gate	acpi_tab.o acpi_thr.o acpi_val.o \
1507c478bd9Sstevel@tonic-gate	acpi_exc.o acpi_bst.o acpi_node.o acpi_stk.o acpi_par.o
1517c478bd9Sstevel@tonic-gate
1527c478bd9Sstevel@tonic-gateFBT_OBJS += fbt.o
1537c478bd9Sstevel@tonic-gateSDT_OBJS += sdt.o
1547c478bd9Sstevel@tonic-gate
1557c478bd9Sstevel@tonic-gate#
1567c478bd9Sstevel@tonic-gate#	Pentium Performance Counter BackEnd module
1577c478bd9Sstevel@tonic-gate#
1587c478bd9Sstevel@tonic-gateP123_PCBE_OBJS = p123_pcbe.o
1597c478bd9Sstevel@tonic-gate
1607c478bd9Sstevel@tonic-gate#
1617c478bd9Sstevel@tonic-gate#	Pentium 4 Performance Counter BackEnd module
1627c478bd9Sstevel@tonic-gate#
1637c478bd9Sstevel@tonic-gateP4_PCBE_OBJS = p4_pcbe.o
1647c478bd9Sstevel@tonic-gate
1657c478bd9Sstevel@tonic-gate#
1667c478bd9Sstevel@tonic-gate#	AMD Opteron/Athlon64 Performance Counter BackEnd module
1677c478bd9Sstevel@tonic-gate#
1687c478bd9Sstevel@tonic-gateOPTERON_PCBE_OBJS = opteron_pcbe.o
1697c478bd9Sstevel@tonic-gate
1707c478bd9Sstevel@tonic-gate#
1717c478bd9Sstevel@tonic-gate#	AAC module
1727c478bd9Sstevel@tonic-gate#
173*830d82f7SplAAC_OBJS = aac.o aac_ioctl.o
1747c478bd9Sstevel@tonic-gate
1757c478bd9Sstevel@tonic-gate#
1767c478bd9Sstevel@tonic-gate#	AMR module
1777c478bd9Sstevel@tonic-gate#
1787c478bd9Sstevel@tonic-gateAMR_OBJS = amr.o
1797c478bd9Sstevel@tonic-gate
1807c478bd9Sstevel@tonic-gate#
1817c478bd9Sstevel@tonic-gate#	special files
1827c478bd9Sstevel@tonic-gate#
1837c478bd9Sstevel@tonic-gateMODSTUB_OBJ +=	 	\
1847c478bd9Sstevel@tonic-gate	modstubs.o
1857c478bd9Sstevel@tonic-gate
1867c478bd9Sstevel@tonic-gateBOOTDEV_OBJS +=		\
1877c478bd9Sstevel@tonic-gate	bootdev.o
1887c478bd9Sstevel@tonic-gate
1897c478bd9Sstevel@tonic-gateINC_PATH	+= -I$(UTSBASE)/intel
190