Makefile
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. # Makefile for the sc ISDN device driver
  2. # The target object and module list name.
  3. O_TARGET := vmlinux-obj.o
  4. # Multipart objects.
  5. list-multi := sc.o
  6. sc-objs := shmem.o init.o debug.o packet.o command.o event.o 
  7.    ioctl.o interrupt.o message.o timer.o
  8. # Each configuration option enables a list of files.
  9. obj-$(CONFIG_ISDN_DRV_SC) += sc.o
  10. include $(TOPDIR)/Rules.make
  11. # Link rules for multi-part drivers.
  12. sc.o: $(sc-objs)
  13. $(LD) -r -o $@ $(sc-objs)