e7d939bda2
This includes: o All directories named *ia64* o All files named *ia64* o All ia64-specific code guarded by __ia64__ o All ia64-specific makefile logic o Mention of ia64 in comments and documentation This excludes: o Everything under contrib/ o Everything under crypto/ o sys/xen/interface o sys/sys/elf_common.h Discussed at: BSDcan
21 lines
377 B
Makefile
21 lines
377 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ppc
|
|
KMOD= ppc
|
|
SRCS= bus_if.h device_if.h ppbus_if.h isa_if.h pci_if.h serdev_if.h \
|
|
opt_ppc.h opt_isa.h \
|
|
ppc.c ppc_pci.c ppc_puc.c
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64"
|
|
SRCS+= ppc_acpi.c ppc_isa.c
|
|
.endif
|
|
|
|
.if ${MACHINE_CPUARCH} == "i386"
|
|
.if ${MACHINE} != "pc98"
|
|
SRCS+= ppc_acpi.c
|
|
.endif
|
|
SRCS+= ppc_isa.c
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|