Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:0k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  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. O_TARGET := agp.o
  6. export-objs := agpgart_be.o
  7. list-multi := agpgart.o
  8. agpgart-objs := agpgart_fe.o agpgart_be.o
  9. obj-$(CONFIG_AGP) += agpgart.o
  10. include $(TOPDIR)/Rules.make
  11. agpgart.o: $(agpgart-objs)
  12. $(LD) $(LD_RFLAG) -r -o $@ $(agpgart-objs)