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

嵌入式Linux

开发平台:

Unix_Linux

  1. # Makefile for the act2000 ISDN device driver
  2. # The target object and module list name.
  3. O_TARGET := vmlinux-obj.o
  4. # Multipart objects.
  5. list-multi := act2000.o
  6. act2000-objs := module.o capi.o act2000_isa.o
  7. # Each configuration option enables a list of files.
  8. obj-$(CONFIG_ISDN_DRV_ACT2000) += act2000.o
  9. include $(TOPDIR)/Rules.make
  10. # Link rules for multi-part drivers.
  11. act2000.o: $(act2000-objs)
  12. $(LD) -r -o $@ $(act2000-objs)