| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |  | 
 | 16 | extra-y	:= head.o init_task.o vmlinux.lds | 
 | 17 |  | 
 | 18 | obj-y	:= process.o signal.o entry.o traps.o irq.o irq_intc.o \ | 
 | 19 | 	   ptrace.o setup.o time.o sys_sh64.o semaphore.o sh_ksyms.o \ | 
 | 20 | 	   switchto.o syscalls.o | 
 | 21 |  | 
 | 22 | obj-$(CONFIG_HEARTBEAT)		+= led.o | 
 | 23 | obj-$(CONFIG_SH_ALPHANUMERIC)	+= alphanum.o | 
 | 24 | obj-$(CONFIG_SH_DMA)		+= dma.o | 
 | 25 | obj-$(CONFIG_SH_FPU)		+= fpu.o | 
 | 26 | obj-$(CONFIG_EARLY_PRINTK)	+= early_printk.o | 
 | 27 | obj-$(CONFIG_KALLSYMS)		+= unwind.o | 
 | 28 | obj-$(CONFIG_PCI)		+= pci-dma.o pcibios.o | 
 | 29 | obj-$(CONFIG_MODULES)		+= module.o | 
 | 30 |  | 
 | 31 | ifeq ($(CONFIG_PCI),y) | 
 | 32 | obj-$(CONFIG_CPU_SH5)		+= pci_sh5.o | 
 | 33 | endif | 
 | 34 |  | 
 | 35 | USE_STANDARD_AS_RULE := true | 
 | 36 |  |