Macpaul Lin | 83dbca7 | 2011-10-11 22:33:18 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2009 |
| 3 | # Marvell Semiconductor <www.marvell.com> |
| 4 | # Written-by: Prafulla Wadaskar <prafulla@marvell.com> |
| 5 | # |
| 6 | # Copyright (C) 2011 Andes Technology Corporation |
| 7 | # Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com> |
| 8 | # Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com> |
| 9 | # |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 10 | # SPDX-License-Identifier: GPL-2.0+ |
Macpaul Lin | 83dbca7 | 2011-10-11 22:33:18 +0000 | [diff] [blame] | 11 | # |
| 12 | |
| 13 | include $(TOPDIR)/config.mk |
| 14 | |
| 15 | LIB = $(obj)lib$(SOC).o |
| 16 | |
| 17 | COBJS-y := cpu.o timer.o |
| 18 | |
| 19 | ifndef CONFIG_SKIP_LOWLEVEL_INIT |
| 20 | SOBJS := lowlevel_init.o |
| 21 | endif |
| 22 | |
| 23 | ifndef CONFIG_SKIP_TRUNOFF_WATCHDOG |
| 24 | SOBJS += watchdog.o |
| 25 | endif |
| 26 | |
| 27 | SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c) |
| 28 | OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y)) |
| 29 | |
| 30 | all: $(obj).depend $(LIB) |
| 31 | |
| 32 | $(LIB): $(OBJS) |
| 33 | $(call cmd_link_o_target, $(OBJS)) |
| 34 | |
| 35 | ######################################################################### |
| 36 | |
| 37 | # defines $(obj).depend target |
| 38 | include $(SRCTREE)/rules.mk |
| 39 | |
| 40 | sinclude $(obj).depend |
| 41 | |
| 42 | ######################################################################### |