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

Linux/Unix编程

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux/MIPS 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. USE_STANDARD_AS_RULE := true
  9. all: kernel.o head.o init_task.o
  10. O_TARGET := kernel.o
  11. export-objs = irq.o mips64_ksyms.o pci-dma.o setup.o smp.o
  12. obj-y := branch.o cpu-probe.o entry.o irq.o proc.o process.o 
  13.    ptrace.o r4k_cache.o r4k_fpu.o r4k_genex.o r4k_switch.o 
  14.    reset.o scall_64.o semaphore.o setup.o signal.o syscall.o 
  15.    time.o traps.o unaligned.o
  16. obj-$(CONFIG_I8259) += i8259.o
  17. obj-$(CONFIG_IRQ_CPU) += irq_cpu.o
  18. obj-$(CONFIG_MODULES) += mips64_ksyms.o
  19. obj-$(CONFIG_MIPS32_COMPAT) += linux32.o scall_o32.o signal32.o ioctl32.o
  20. obj-$(CONFIG_BINFMT_ELF32) += binfmt_elf32.o
  21. obj-$(CONFIG_SMP) += smp.o
  22. ifndef CONFIG_MAPPED_PCI_IO
  23. obj-y += pci-dma.o
  24. endif
  25. AFLAGS_r4k_genex.o := -P
  26. include $(TOPDIR)/Rules.make