The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/modules/agp/Makefile

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 # $FreeBSD: releng/10.3/sys/modules/agp/Makefile 243100 2012-11-15 20:25:09Z eadler $
    2 
    3 .PATH: ${.CURDIR}/../../dev/agp
    4 
    5 KMOD=   agp
    6 SRCS=   agp.c agp_if.c
    7 .if ${MACHINE_CPUARCH} == "i386"
    8 SRCS+=  agp_i810.c agp_intel.c agp_via.c agp_sis.c agp_ali.c agp_amd.c \
    9         agp_nvidia.c agp_ati.c
   10 .endif
   11 .if ${MACHINE} == "i386"
   12 SRCS+=  agp_amd64.c
   13 .endif
   14 .if ${MACHINE_CPUARCH} == "amd64"
   15 SRCS+=  agp_amd64.c agp_i810.c agp_via.c
   16 .endif
   17 .if ${MACHINE_CPUARCH} == "powerpc"
   18 SRCS+=  agp_apple.c
   19 .endif
   20 SRCS+=  device_if.h bus_if.h agp_if.h pci_if.h
   21 SRCS+=  opt_agp.h
   22 MFILES= kern/device_if.m kern/bus_if.m dev/agp/agp_if.m dev/pci/pci_if.m
   23 WERROR=
   24 
   25 EXPORT_SYMS=    agp_find_device         \
   26                 agp_state               \
   27                 agp_acquire             \
   28                 agp_release             \
   29                 agp_enable              \
   30                 agp_alloc_memory        \
   31                 agp_free_memory         \
   32                 agp_bind_memory         \
   33                 agp_unbind_memory       \
   34                 agp_memory_info
   35 
   36 
   37 .if ${MACHINE_CPUARCH} == "i386"  || ${MACHINE_CPUARCH} == "amd64"
   38 EXPORT_SYMS+=   intel_gtt_clear_range   \
   39                 intel_gtt_insert_pages  \
   40                 intel_gtt_get           \
   41                 intel_gtt_chipset_flush \
   42                 intel_gtt_unmap_memory  \
   43                 intel_gtt_map_memory    \
   44                 intel_gtt_insert_sg_entries \
   45                 intel_gtt_get_bridge_device
   46 .endif
   47 
   48 .include <bsd.kmod.mk>

Cache object: 81daa3ed238b5f7f9c7039165634ea26


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.