07af4a8e64
modules. Note that in the case of 'mii' the API is not clearly defined, and the symbols exported represent a subset defined by current usage.
24 lines
520 B
Makefile
24 lines
520 B
Makefile
# $FreeBSD$
|
|
|
|
.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+= device_if.h bus_if.h agp_if.h pci_if.h
|
|
SRCS+= opt_bdg.h opt_bus.h opt_pci.h
|
|
MFILES= kern/device_if.m kern/bus_if.m pci/agp_if.m dev/pci/pci_if.m
|
|
|
|
EXPORT_SYMS= agp_find_device \
|
|
agp_state \
|
|
agp_acquire \
|
|
agp_release \
|
|
agp_enable \
|
|
agp_alloc_memory \
|
|
agp_free_memory \
|
|
agp_bind_memory \
|
|
agp_unbind_memory \
|
|
agp_memory_info
|
|
|
|
.include <bsd.kmod.mk>
|