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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the kernel HIL device drivers.
  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 definitions are now inherited from the
  9. # parent makes..
  10. #
  11. O_TARGET := hil.o
  12. obj-y  += 
  13. # All of the (potential) objects that export symbols.
  14. # This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
  15. export-objs     := hp_sdc.o hil_mlc.o 
  16. mod-subdirs :=
  17. list-multi :=
  18. obj-$(CONFIG_HIL_KBD_BASIC) += hilkbd.o
  19. obj-$(CONFIG_HP_SDC) += hp_sdc.o
  20. obj-$(CONFIG_HP_SDC_MLC) += hp_sdc_mlc.o
  21. obj-$(CONFIG_HP_SDC_RTC) += hp_sdc_rtc.o
  22. obj-$(CONFIG_HIL_MLC) += hil_mlc.o
  23. obj-$(CONFIG_HIL_KBD) += hil_kbd.o
  24. obj-$(CONFIG_HIL_PTR) += hil_ptr.o
  25. include $(TOPDIR)/Rules.make
  26. fastdep: