a76a2eab5667f28a22073f9b78351afa05b3102c
[profile/mobile/platform/kernel/u-boot-tm1.git] / arch / arm / cpu / armv7 / sc9630 / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # See file CREDITS for list of people who contributed to this
6 # project.
7 #
8 # This program is free software; you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation; either version 2 of
11 # the License, or (at your option) any later version.
12 #
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 # MA 02111-1307 USA
22
23 include $(TOPDIR)/config.mk
24
25 LIB     = $(obj)lib$(SOC).o
26
27 COBJS   = timer.o reset.o ldo.o chip_phy_v3.o vibrator.o mmu.o adc.o rtc-sprd.o sec_boot.o glb.o adi.o gpio.o gpio_phy.o clock.o check_reboot.o eic.o
28 SOBJS += mmu_asm.o
29
30 ifneq ($(CONFIG_SPX30G)$(CONFIG_SPX35L)$(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S),)
31 COBJS += otp-helper.o efuse.o
32 ifneq ($(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S),)
33 COBJS += ana_efuse.o
34 endif
35
36 else
37 COBJS += efuse_drv.o
38 endif
39
40 ifndef CONFIG_SKIP_LOWLEVEL_INIT
41 COBJS   += lowlevel_init.o sdram.o remap.o sdram_prod.o mmu.o chip_cfg.o mcu.o
42 SOBJS   = cpu_spec.o mmu_asm.o
43 endif
44
45 ifdef CONFIG_HW_WATCHDOG
46 COBJS  += watchdog.o watchdog_phy_v3.o watchdog_hal.o
47 endif
48
49 ifdef CONFIG_AUTODLOADER
50 COBJS   += chip_cfg.o
51 endif
52
53 COBJS += misc.o
54
55
56 ifneq ($(strip $(CONFIG_ADIE_SC2723)$(CONFIG_ADIE_SC2723S)),)
57 COBJS += dcdc_cal_sc2723.o
58 else
59
60 ifdef CONFIG_ADIE_SC2713S
61 COBJS += dcdc_cal_sc2713s.o
62 ifdef CONFIG_ADIE_SC2713
63 COBJS += dcdc_cal.o
64 endif
65
66 else
67 ifdef CONFIG_SPX15
68 COBJS += dcdc_cal_x15.o
69 else
70 COBJS += dcdc_cal.o
71 endif
72 endif # CONFIG_ADIE_SC2713S
73 endif # CONFIG_ADIE_SC2723
74
75 SRCS    := $(SOBJS:.o=.S) $(COBJS:.o=.c)
76 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS) )
77
78 all:    $(obj).depend $(LIB)
79
80 $(LIB): $(OBJS)
81         $(AR) $(ARFLAGS) $@ $(OBJS)
82
83 #########################################################################
84
85 # defines $(obj).depend target
86 include $(SRCTREE)/rules.mk
87
88 sinclude $(obj).depend
89
90 #########################################################################