1#
2# Makefile for the Linux/SuperH 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
9all: kernel.o head.o init_task.o
10
11clean:
12
13O_TARGET := kernel.o
14
15export-objs	:= io.o io_generic.o io_hd64461.o setup_hd64461.o sh_ksyms.o \
16		   dma.o
17
18obj-y	:= process.o signal.o entry.o traps.o irq.o irq_ipr.o \
19	ptrace.o setup.o time.o sys_sh.o semaphore.o \
20	irq_imask.o io.o io_generic.o sh_ksyms.o ubc.o
21
22obj-$(CONFIG_CF_ENABLER)	+= cf-enabler.o
23obj-$(CONFIG_CPU_SH4)		+= fpu.o
24obj-$(CONFIG_SH_RTC)            += rtc.o
25obj-$(CONFIG_SH_DMA)		+= dma.o
26obj-$(CONFIG_SH_STANDARD_BIOS)	+= sh_bios.o
27obj-$(CONFIG_SH_KGDB)		+= kgdb_stub.o kgdb_jmp.o
28
29ifeq ($(CONFIG_PCI),y)
30ifeq ($(CONFIG_SH_DREAMCAST),y)
31obj-y 				+= pci-dc.o pcibios.o
32else
33obj-y                           += pci-dma.o pcibios.o
34obj-$(CONFIG_CPU_SUBTYPE_ST40)+= pci_st40.o
35obj-$(CONFIG_CPU_SUBTYPE_SH7751)+= pci-sh7751.o
36obj-$(CONFIG_SH_BIGSUR)+= pci-bigsur.o
37obj-$(CONFIG_SH_7751_SOLUTION_ENGINE)+= pci-7751se.o
38obj-$(CONFIG_PCI_SD0001)+= pci-sd0001.o
39obj-$(CONFIG_SH_SECUREEDGE5410)	+= pci-snapgear.o
40obj-$(CONFIG_SH_KEYWEST)	+= pci-v320usc.o
41endif
42endif
43
44obj-$(CONFIG_SH_HP600)		+= mach_hp600.o
45machine-specific-objs		+= mach_hp600.o
46
47obj-$(CONFIG_SH_HS7729PCI)	+= mach_hs7729pci.o setup_hs7729pci.o io_hs7729pci.o
48machine-specific-objs		+= mach_hs7729pci.o setup_hs7729pci.o io_hs7729pci.o
49
50obj-$(CONFIG_SH_SOLUTION_ENGINE)+= mach_se.o setup_se.o io_se.o led_se.o
51machine-specific-objs		+= mach_se.o setup_se.o io_se.o led_se.o
52
53obj-$(CONFIG_SH_7751_SOLUTION_ENGINE)+= mach_7751se.o setup_7751se.o \
54					io_7751se.o led_se.o
55machine-specific-objs           += mach_7751se.o 7751setup_se.o \
56				   io_7751se.o led_se.o pci-7751se.o
57
58obj-$(CONFIG_SH_MOBILE_SOLUTION_ENGINE)+= mach_shmse.o setup_shmse.o \
59					io_shmse.o led_se.o
60machine-specific-objs          	+= mach_shmse.o setup_shmse.o \
61				   io_shmse.o led_se.o
62
63obj-$(CONFIG_SH_BIGSUR)		+= mach_bigsur.o setup_bigsur.o io_bigsur.o led_bigsur.o
64machine-specific-objs		+= mach_bigsur.o setup_bigsur.o io_bigsur.o led_bigsur.o
65
66obj-$(CONFIG_SH_SH2000)		+= setup_sh2000.o io_sh2000.o
67machine-specific-objs		+= setup_sh2000.o io_sh2000.o
68
69obj-$(CONFIG_SH_CAT68701) 	+= mach_cat68701.o io_cat68701.o
70machine-specific-objs		+= mach_cat68701.o io_cat68701.o
71
72obj-$(CONFIG_SH_CQREEK)		+= setup_cqreek.o
73machine-specific-objs		+= setup_cqreek.o
74
75obj-$(CONFIG_SH_UNKNOWN)	+= mach_unknown.o io_unknown.o
76machine-specific-objs		+= mach_unknown.o io_unknown.o
77
78obj-$(CONFIG_HD64461)		+= setup_hd64461.o io_hd64461.o
79machine-specific-objs		+= setup_hd64461.o io_hd64461.o
80
81obj-$(CONFIG_CPU_SUBTYPE_ST40) +=irq_intc2.o
82
83obj-$(CONFIG_SH_ADX)		+= mach_adx.o setup_adx.o io_adx.o irq_maskreg.o
84machine-specific-objs		+= mach_adx.o setup_adx.o io_adx.o irq_maskreg.o
85
86obj-$(CONFIG_SH_SECUREEDGE5410)	+= mach_snapgear.o setup_snapgear.o io_snapgear.o
87machine-specific-objs		+= mach_snapgear.o setup_snapgear.o io_snapgear.o
88ifeq ($(CONFIG_RTC),y)
89obj-$(CONFIG_SH_SECUREEDGE5410)	+= rtc-snapgear.o
90machine-specific-objs		+= rtc-snapgear.o
91endif
92
93obj-$(CONFIG_SH_KEYWEST)	+= mach_keywest.o setup_keywest.o io_keywest.o
94machine-specific-objs		+= mach_keywest.o setup_keywest.o io_keywest.o
95
96obj-$(CONFIG_SH_SH4202_MICRODEV)+= mach_microdev.o setup_microdev.o io_microdev.o irq_microdev.o
97machine-specific-objs		+= mach_microdev.o setup_microdev.o io_microdev.o irq_microdev.o
98
99# Doesn't compile well, so don't include in machine-specific-objs
100obj-$(CONFIG_HD64465)		+= setup_hd64465.o io_hd64465.o hd64465_gpio.o
101obj-$(CONFIG_SH_DMIDA)		+= mach_dmida.o
102obj-$(CONFIG_SH_EC3104)         += setup_ec3104.o io_ec3104.o mach_ec3104.o
103obj-$(CONFIG_SH_DREAMCAST)	+= mach_dc.o setup_dc.o io_dc.o rtc-aica.o
104
105ifeq ($(CONFIG_SH_GENERIC),y)
106obj-y		+= $(machine-specific-objs)
107endif
108
109USE_STANDARD_AS_RULE := true
110
111include $(TOPDIR)/Rules.make
112