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