blob: 3e726b31431d8ded70e421380a858e11558942c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#
# Makefile for the agpgart device driver. This driver adds a user
# space ioctl interface to use agp memory. It also adds a kernel interface
# that other drivers could use to manipulate agp memory.
O_TARGET := agp.o
export-objs := agpgart_be.o
multi-objs := agpgart.o
agpgart-objs := agpgart_fe.o agpgart_be.o
obj-$(CONFIG_AGP) += agpgart.o
include $(TOPDIR)/Rules.make
agpgart.o: $(agpgart-objs)
$(LD) $(LD_RFLAG) -r -o $@ $(agpgart-objs)
|