]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/esd/vom405/Makefile
Merge branch 'u-boot/master' into u-boot-arm/master
[people/ms/u-boot.git] / board / esd / vom405 / 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 ../common/misc.o $(CPLD)
21
22 SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
23 OBJS := $(addprefix $(obj),$(COBJS))
24 SOBJS := $(addprefix $(obj),$(SOBJS))
25
26 $(LIB): $(OBJS) $(SOBJS)
27 $(call cmd_link_o_target, $(OBJS))
28
29 #########################################################################
30
31 # defines $(obj).depend target
32 include $(SRCTREE)/rules.mk
33
34 sinclude $(obj).depend
35
36 #########################################################################