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

Linux/Unix编程

开发平台:

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 Alchemy Au1000 CPU, 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. USE_STANDARD_AS_RULE := true
  13. all: au1000.o
  14. O_TARGET := au1000.o
  15. export-objs = prom.o serial.o clocks.o power.o usbdev.o
  16. obj-y := prom.o int-handler.o dma.o irq.o puts.o time.o reset.o 
  17. clocks.o power.o usbdev.o
  18. obj-$(CONFIG_AU1000_UART) += serial.o
  19. obj-$(CONFIG_AU1000_USB_DEVICE) += usbdev.o
  20. obj-$(CONFIG_REMOTE_DEBUG) += dbg_io.o
  21. obj-$(CONFIG_RTC) += rtc.o
  22. include $(TOPDIR)/Rules.make