Makefile 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #
  2. # This file is subject to the terms and conditions of the GNU General Public
  3. # License. See the file "COPYING" in the main directory of this archive
  4. # for more details.
  5. #
  6. # Copyright (C) 2000, 2001 Paolo Alberelli
  7. # Copyright (C) 2003 Paul Mundt
  8. #
  9. # Makefile for the Linux sh64 kernel.
  10. #
  11. # Note! Dependencies are done automagically by 'make dep', which also
  12. # removes any old dependencies. DON'T put your own dependencies here
  13. # unless it's something special (ie not a .c file).
  14. #
  15. extra-y := head.o init_task.o vmlinux.lds
  16. obj-y := process.o signal.o entry.o traps.o irq.o irq_intc.o \
  17. ptrace.o setup.o time.o sys_sh64.o semaphore.o sh_ksyms.o \
  18. switchto.o syscalls.o
  19. obj-$(CONFIG_HEARTBEAT) += led.o
  20. obj-$(CONFIG_SH_ALPHANUMERIC) += alphanum.o
  21. obj-$(CONFIG_SH_DMA) += dma.o
  22. obj-$(CONFIG_SH_FPU) += fpu.o
  23. obj-$(CONFIG_EARLY_PRINTK) += early_printk.o
  24. obj-$(CONFIG_KALLSYMS) += unwind.o
  25. obj-$(CONFIG_PCI) += pci-dma.o pcibios.o
  26. obj-$(CONFIG_MODULES) += module.o
  27. ifeq ($(CONFIG_PCI),y)
  28. obj-$(CONFIG_CPU_SH5) += pci_sh5.o
  29. endif
  30. USE_STANDARD_AS_RULE := true