]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/toradex/colibri_pxa270/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / toradex / colibri_pxa270 / Makefile
1 #
2 # Toradex Colibri PXA270 Support
3 #
4 # Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com>
5 #
6 # SPDX-License-Identifier: GPL-2.0+
7 #
8
9 include $(TOPDIR)/config.mk
10
11 LIB = $(obj)lib$(BOARD).o
12
13 COBJS := colibri_pxa270.o
14
15 SRCS := $(COBJS:.o=.c)
16 OBJS := $(addprefix $(obj),$(COBJS))
17
18 $(LIB): $(obj).depend $(OBJS)
19 $(call cmd_link_o_target, $(OBJS))
20
21 #########################################################################
22
23 # defines $(obj).depend target
24 include $(SRCTREE)/rules.mk
25
26 sinclude $(obj).depend
27
28 #########################################################################