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

嵌入式Linux

开发平台:

Unix_Linux

  1. # Makefile for the kernel ISDN subsystem and device drivers.
  2. # The target object and module list name.
  3. O_TARGET := isdn.a
  4. # Objects that export symbols.
  5. export-objs := isdn_common.o
  6. # Multipart objects.
  7. list-multi := isdn.o
  8. isdn-objs := isdn_net.o isdn_tty.o isdn_v110.o isdn_common.o
  9. # Optional parts of multipart objects.
  10. isdn-objs-$(CONFIG_ISDN_PPP) += isdn_ppp.o
  11. isdn-objs-$(CONFIG_ISDN_X25) += isdn_concap.o isdn_x25iface.o
  12. isdn-objs-$(CONFIG_ISDN_AUDIO) += isdn_audio.o
  13. isdn-objs-$(CONFIG_ISDN_TTY_FAX) += isdn_ttyfax.o
  14. isdn-objs-$(CONFIG_ISDN_WITH_ABC) += isdn_dwabc.o
  15. isdn-objs += $(isdn-objs-y)
  16. # Ordering constraints: isdn.o first, rest doesn't matter
  17. # Each configuration option enables a list of files.
  18. obj-$(CONFIG_ISDN) += isdn.o
  19. obj-$(CONFIG_ISDN_PPP_BSDCOMP) += isdn_bsdcomp.o
  20. # Object files in subdirectories
  21. mod-subdirs := avmb1 eicon
  22. subdir-$(CONFIG_ISDN_DIVERSION) += divert
  23. subdir-$(CONFIG_ISDN_DRV_HISAX) += hisax
  24. subdir-$(CONFIG_ISDN_DRV_ICN) += icn
  25. subdir-$(CONFIG_ISDN_DRV_PCBIT) += pcbit
  26. subdir-$(CONFIG_ISDN_DRV_SC) += sc
  27. subdir-$(CONFIG_ISDN_CAPI) += avmb1
  28. subdir-$(CONFIG_ISDN_DRV_LOOP) += isdnloop
  29. subdir-$(CONFIG_ISDN_DRV_ACT2000) += act2000
  30. subdir-$(CONFIG_ISDN_DRV_EICON) += eicon
  31. subdir-$(CONFIG_HYSDN) += hysdn
  32. subdir-$(CONFIG_ISDN_DRV_TPAM) += tpam
  33. obj-y += $(addsuffix /vmlinux-obj.o, $(subdir-y))
  34. # The global Rules.make.
  35. include $(TOPDIR)/Rules.make
  36. # Link rules for multi-part drivers.
  37. isdn.o: $(isdn-objs)
  38. $(LD) -r -o $@ $(isdn-objs)