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