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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the ATM Protocol Families.
  3. #
  4. # Note! Dependencies are done automagically by 'make dep', which also
  5. # removes any old dependencies. DON'T put your own dependencies here
  6. # unless it's something special (ie not a .c file).
  7. #
  8. # Note 2! The CFLAGS definition is now in the main makefile...
  9. O_TARGET := atm.o
  10. export-objs  := common.o atm_misc.o raw.o resources.o ipcommon.o proc.o
  11. list-multi := mpoa.o
  12. mpoa-objs := mpc.o mpoa_caches.o mpoa_proc.o
  13. obj-$(CONFIG_ATM) := addr.o pvc.o signaling.o svc.o common.o atm_misc.o raw.o resources.o
  14. ifeq ($(CONFIG_ATM_CLIP),y)
  15. obj-y += clip.o
  16. NEED_IPCOM = ipcommon.o
  17. endif
  18. ifeq ($(CONFIG_NET_SCH_ATM),y)
  19. NEED_IPCOM = ipcommon.o
  20. endif
  21. obj-y += $(NEED_IPCOM)
  22. ifeq ($(CONFIG_PROC_FS),y)
  23. obj-y += proc.o
  24. endif
  25. obj-$(CONFIG_ATM_LANE) += lec.o
  26. obj-$(CONFIG_ATM_MPOA) += mpoa.o
  27. obj-$(CONFIG_PPPOATM) += pppoatm.o
  28. include $(TOPDIR)/Rules.make
  29. mpoa.o: $(mpoa-objs)
  30. $(LD) -r -o mpoa.o $(mpoa-objs)