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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the linux kernel.
  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 in the main makefile...
  9. # All of the (potential) objects that export symbols.
  10. # This list comes from 'grep -l EXPORT_SYMBOL *.[hc]'.
  11. export-objs := tc.o
  12. # Object file lists.
  13. obj-y :=
  14. obj-m :=
  15. obj-n :=
  16. obj- :=
  17. obj-$(CONFIG_TC) += tc.o
  18. obj-$(CONFIG_ZS) += zs.o
  19. obj-$(CONFIG_VT) += lk201.o lk201-map.o lk201-remap.o
  20. # Files that are both resident and modular: remove from modular.
  21. obj-m := $(filter-out $(obj-y), $(obj-m))
  22. # Translate to Rules.make lists.
  23. L_TARGET := tc.a
  24. L_OBJS := $(sort $(filter-out $(export-objs), $(obj-y)))
  25. LX_OBJS := $(sort $(filter     $(export-objs), $(obj-y)))
  26. M_OBJS := $(sort $(filter-out $(export-objs), $(obj-m)))
  27. MX_OBJS := $(sort $(filter     $(export-objs), $(obj-m)))
  28. include $(TOPDIR)/Rules.make
  29. lk201-map.c: lk201-map.map
  30. loadkeys --mktable lk201-map.map > lk201-map.c