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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for ACP Modem (Mwave).
  3. #
  4. # See the README file in this directory for more info. <paulsch@us.ibm.com>
  5. #
  6. # Note! Dependencies are done automagically by 'make dep', which also
  7. # removes any old dependencies. DON'T put your own dependencies here
  8. # unless it's something special (ie not a .c file).
  9. #
  10. # Note 2! The CFLAGS definitions are now inherited from the
  11. # parent makes..
  12. #
  13. # To compile in lots (~20 KiB) of run-time enablable printk()s for debugging:
  14. EXTRA_CFLAGS += -DMW_TRACE
  15. # To have the mwave driver disable other uarts if necessary
  16. # EXTRA_CFLAGS += -DMWAVE_FUTZ_WITH_OTHER_DEVICES
  17. O_TARGET := mwave.o
  18. obj-y := mwavedd.o smapi.o tp3780i.o 3780i.o
  19. obj-m := $(O_TARGET)
  20. include $(TOPDIR)/Rules.make