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

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. #  Copyright 2000 MontaVista Software Inc.
  3. #  Author: MontaVista Software, Inc.
  4. #      ppopov@mvista.com or source@mvista.com
  5. #
  6. # Makefile for the ITE 8172 (qed-4n-s01b) board, generic files.
  7. #
  8. # Note! Dependencies are done automagically by 'make dep', which also
  9. # removes any old dependencies. DON'T put your own dependencies here
  10. # unless it's something special (ie not a .c file).
  11. #
  12. .S.s:
  13. $(CPP) $(CFLAGS) $< -o $*.s
  14. .S.o:
  15. $(CC) $(CFLAGS) -c $< -o $*.o
  16. all: it8172.o
  17. O_TARGET := it8172.o
  18. obj-y := it8172_rtc.o it8172_setup.o irq.o int-handler.o pmon_prom.o time.o lpc.o puts.o reset.o
  19. ifdef CONFIG_PCI
  20. obj-y += it8172_pci.o
  21. endif
  22. ifdef CONFIG_IT8172_CIR
  23. obj-y += it8172_cir.o 
  24. endif
  25. ifdef CONFIG_REMOTE_DEBUG
  26.  obj-y += dbg_io.o             
  27. endif
  28. include $(TOPDIR)/Rules.make