]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/ti/tnetv107xevm/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / ti / tnetv107xevm / Makefile
1 #
2 # SPDX-License-Identifier: GPL-2.0+
3 #
4
5 include $(TOPDIR)/config.mk
6
7 LIB = $(obj)lib$(BOARD).o
8
9 COBJS += sdb_board.o
10
11 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
12 OBJS := $(addprefix $(obj),$(COBJS))
13 SOBJS := $(addprefix $(obj),$(SOBJS))
14
15 .PHONY: all
16
17 all: $(LIB)
18
19 $(LIB): $(obj).depend $(OBJS) $(SOBJS)
20 $(call cmd_link_o_target, $(OBJS) $(SOBJS))
21
22 #########################################################################
23 # This is for $(obj).depend target
24 include $(SRCTREE)/rules.mk
25
26 sinclude $(obj).depend
27
28 #########################################################################