]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/nds32/cpu/n1213/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / arch / nds32 / cpu / n1213 / Makefile
CommitLineData
37e5708a
ML
1#
2# (C) Copyright 2000-2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# Copyright (C) 2011 Andes Technology Corporation
6# Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
7# Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
8#
1a459660 9# SPDX-License-Identifier: GPL-2.0+
37e5708a
ML
10#
11
12include $(TOPDIR)/config.mk
13
14LIB = $(obj)lib$(CPU).o
15
16START = start.o
17
18SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c)
19OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS))
20START := $(addprefix $(obj),$(START))
21
22all: $(obj).depend $(START) $(LIB)
23
24$(LIB): $(OBJS)
25 $(call cmd_link_o_target, $(OBJS))
26
27#########################################################################
28
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
31
32sinclude $(obj).depend
33
34#########################################################################