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