stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 1 | # |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 2 | # (C) Copyright 2000-2006 |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | # |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame^] | 5 | # SPDX-License-Identifier: GPL-2.0+ |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 6 | # |
| 7 | |
| 8 | include $(TOPDIR)/config.mk |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 9 | ifneq ($(OBJTREE),$(SRCTREE)) |
| 10 | $(shell mkdir -p $(obj)../common/xilinx_jtag) |
| 11 | endif |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 12 | |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 13 | LIB = $(obj)lib$(BOARD).o |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 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 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 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)) |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 25 | |
| 26 | $(LIB): $(OBJS) $(SOBJS) |
Sebastien Carlier | 6d8962e | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 27 | $(call cmd_link_o_target, $(OBJS)) |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 28 | |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 29 | ######################################################################### |
| 30 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 31 | # defines $(obj).depend target |
| 32 | include $(SRCTREE)/rules.mk |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 33 | |
Marian Balakowicz | f932863 | 2006-09-01 19:49:50 +0200 | [diff] [blame] | 34 | sinclude $(obj).depend |
stroese | 5ce08ee | 2003-09-12 08:41:24 +0000 | [diff] [blame] | 35 | |
| 36 | ######################################################################### |