diff options
| author | Eric Anholt <anholt@FreeBSD.org> | 2003-02-14 06:33:52 +0000 |
|---|---|---|
| committer | Eric Anholt <anholt@FreeBSD.org> | 2003-02-14 06:33:52 +0000 |
| commit | 05d1e23aa7784d8f2f4b7e5a2fbcb1d52bddee04 (patch) | |
| tree | 15c6acae66f1380af036f5e4697f34c2531b44f7 /sys/modules/agp | |
| parent | 11c6a5f80da70171ae26cb574bb16d84ed86e2b1 (diff) | |
Notes
Diffstat (limited to 'sys/modules/agp')
| -rw-r--r-- | sys/modules/agp/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/sys/modules/agp/Makefile b/sys/modules/agp/Makefile index 67c46d0390bf1..b17be3a7c9a47 100644 --- a/sys/modules/agp/Makefile +++ b/sys/modules/agp/Makefile @@ -3,8 +3,13 @@ .PATH: ${.CURDIR}/../../pci KMOD= agp -SRCS= agp.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c -SRCS+= agp_i810.c agp_if.c +SRCS= agp.c agp_if.c +.if ${MACHINE_ARCH} == "i386" +SRCS+= agp_i810.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c +.endif +.if ${MACHINE_ARCH} == "alpha" +SRCS+= agp_amd.c +.endif SRCS+= device_if.h bus_if.h agp_if.h pci_if.h SRCS+= opt_bdg.h opt_bus.h MFILES= kern/device_if.m kern/bus_if.m pci/agp_if.m dev/pci/pci_if.m |
