]> git.ipfire.org Git - thirdparty/u-boot.git/blame - board/atmel/at91sam9rlek/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / atmel / at91sam9rlek / Makefile
CommitLineData
2118ebb4
SP
1#
2# (C) Copyright 2003-2008
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# (C) Copyright 2008
c9e798d3 6# Stelian Pop <stelian@popies.net>
2118ebb4
SP
7# Lead Tech Design <www.leadtechdesign.com>
8#
1a459660 9# SPDX-License-Identifier: GPL-2.0+
2118ebb4
SP
10#
11
12include $(TOPDIR)/config.mk
13
6d8962e8 14LIB = $(obj)lib$(BOARD).o
2118ebb4
SP
15
16COBJS-y += at91sam9rlek.o
17COBJS-y += led.o
16396608 18COBJS-$(CONFIG_HAS_DATAFLASH) += partition.o
2118ebb4
SP
19
20SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
21OBJS := $(addprefix $(obj),$(COBJS-y))
22SOBJS := $(addprefix $(obj),$(SOBJS))
23
24$(LIB): $(obj).depend $(OBJS) $(SOBJS)
6d8962e8 25 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
2118ebb4 26
2118ebb4
SP
27#########################################################################
28
29# defines $(obj).depend target
30include $(SRCTREE)/rules.mk
31
32sinclude $(obj).depend
33
34#########################################################################