]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/esd/cms700/Makefile
Add GPL-2.0+ SPDX-License-Identifier to source files
[people/ms/u-boot.git] / board / esd / cms700 / Makefile
1 #
2 # (C) Copyright 2000-2006
3 # Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 #
5 # SPDX-License-Identifier: GPL-2.0+
6 #
7
8 include $(TOPDIR)/config.mk
9 ifneq ($(OBJTREE),$(SRCTREE))
10 $(shell mkdir -p $(obj)../common/xilinx_jtag)
11 endif
12
13 LIB = $(obj)lib$(BOARD).o
14
15 # Objects for Xilinx JTAG programming (CPLD)
16 CPLD = ../common/xilinx_jtag/lenval.o \
17 ../common/xilinx_jtag/micro.o \
18 ../common/xilinx_jtag/ports.o
19
20 COBJS = $(BOARD).o flash.o \
21 ../common/misc.o \
22 $(CPLD) \
23 ../common/esd405ep_nand.o \
24
25 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
26 OBJS := $(addprefix $(obj),$(COBJS))
27 SOBJS := $(addprefix $(obj),$(SOBJS))
28
29 $(LIB): $(OBJS) $(SOBJS)
30 $(call cmd_link_o_target, $(OBJS))
31
32 #########################################################################
33
34 # defines $(obj).depend target
35 include $(SRCTREE)/rules.mk
36
37 sinclude $(obj).depend
38
39 #########################################################################