]> git.ipfire.org Git - thirdparty/u-boot.git/blob - board/tqc/tqm834x/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[thirdparty/u-boot.git] / board / tqc / tqm834x / Makefile
1 #
2 # (C) Copyright 2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # Copyright 2004 Freescale Semiconductor, Inc.
6 #
7 # SPDX-License-Identifier: GPL-2.0+
8 #
9
10 include $(TOPDIR)/config.mk
11
12 LIB = $(obj)lib$(BOARD).o
13
14 COBJS-y += $(BOARD).o
15 COBJS-$(CONFIG_PCI) += pci.o
16
17 COBJS := $(COBJS-y)
18 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
19 OBJS := $(addprefix $(obj),$(COBJS))
20 SOBJS := $(addprefix $(obj),$(SOBJS))
21
22 $(LIB): $(obj).depend $(OBJS)
23 $(call cmd_link_o_target, $(OBJS))
24
25 #########################################################################
26
27 # defines $(obj).depend target
28 include $(SRCTREE)/rules.mk
29
30 sinclude $(obj).depend
31
32 #########################################################################