Loading...
# # 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 ifeq ($(CONFIG_AGP),y) O_OBJS += agpgart_fe.o OX_OBJS += agpgart_be.o else ifeq ($(CONFIG_AGP), m) MI_OBJS += agpgart_fe.o MIX_OBJS += agpgart_be.o M_OBJS += agpgart.o endif endif include $(TOPDIR)/Rules.make agpgart.o: __KEEPMAKEFILEO__I.o __KEEPMAKEFILEO__J.o $(LD) $(LD_RFLAG) -r -o $@ agpgart_be.o agpgart_fe.o |