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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux IrDA protocol layer.
  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 := irda.o
  10. export-objs := irsyms.o
  11. obj-y  := iriap.o iriap_event.o irlmp.o irlmp_event.o irlmp_frame.o 
  12.             irlap.o irlap_event.o irlap_frame.o timer.o qos.o irqueue.o 
  13.             irttp.o irda_device.o irias_object.o crc.o wrapper.o af_irda.o 
  14.     discovery.o parameters.o irsyms.o
  15. ifeq ($(CONFIG_IRDA),m)
  16. obj-m   := $(O_TARGET)
  17. endif
  18. obj-$(CONFIG_PROC_FS) += irproc.o
  19. obj-$(CONFIG_SYSCTL) += irsysctl.o
  20. obj-$(CONFIG_IRLAN) += irlan/irlan.o
  21. subdir-$(CONFIG_IRLAN) += irlan
  22. subdir-$(CONFIG_IRNET) += irnet
  23. subdir-$(CONFIG_IRCOMM) += ircomm
  24. ifeq ($(CONFIG_IRLAN),y)
  25. obj-y += irlan/irlan.o
  26. endif
  27. ifeq ($(CONFIG_IRNET),y)
  28. obj-y += irnet/irnet.o
  29. endif
  30. ifeq ($(CONFIG_IRCOMM),y)
  31. obj-y += ircomm/ircomm_and_tty.o
  32. endif
  33. include $(TOPDIR)/Rules.make