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