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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the kernel character 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  := acorn-char.o
  12. # Object file lists.
  13. obj-y    :=
  14. obj-m :=
  15. obj-n :=
  16. obj- :=
  17. # All the objects that export symbols.
  18. export-objs := mouse_rpc.o
  19. obj-arc := keyb_arc.o
  20. obj-rpc := keyb_ps2.o
  21. obj-clps7500 := keyb_ps2.o defkeymap-acorn.o
  22. obj-$(CONFIG_RPCMOUSE) += mouse_rpc.o
  23. obj-$(CONFIG_ATOMWIDE_SERIAL) += serial-atomwide.o
  24. obj-$(CONFIG_DUALSP_SERIAL) += serial-dualsp.o
  25. obj-$(CONFIG_ARCH_ACORN) += defkeymap-acorn.o i2c.o pcf8583.o
  26. obj-$(CONFIG_L7200_KEYB) += defkeymap-l7200.o keyb_l7200.o
  27. # Do the i2c and rtc last
  28. obj-y += $(obj-$(MACHINE))
  29. include $(TOPDIR)/Rules.make
  30. %.c: %.map
  31. loadkeys --mktable $< > $@