u-boot-brain/board/esd/pmc405/Makefile

37 lines
898 B
Makefile
Raw Normal View History

2003-05-23 20:35:47 +09:00
#
# (C) Copyright 2000-2006
2003-05-23 20:35:47 +09:00
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
# SPDX-License-Identifier: GPL-2.0+
2003-05-23 20:35:47 +09:00
#
include $(TOPDIR)/config.mk
ifneq ($(OBJTREE),$(SRCTREE))
$(shell mkdir -p $(obj)../common/xilinx_jtag)
endif
2003-05-23 20:35:47 +09:00
LIB = $(obj)lib$(BOARD).o
2003-05-23 20:35:47 +09:00
2003-09-12 17:46:58 +09:00
# Objects for Xilinx JTAG programming (CPLD)
CPLD = ../common/xilinx_jtag/lenval.o \
../common/xilinx_jtag/micro.o \
../common/xilinx_jtag/ports.o
COBJS = $(BOARD).o ../common/misc.o ../common/cmd_loadpci.o $(CPLD)
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))
SOBJS := $(addprefix $(obj),$(SOBJS))
2003-05-23 20:35:47 +09:00
$(LIB): $(OBJS) $(SOBJS)
$(call cmd_link_o_target, $(OBJS))
2003-05-23 20:35:47 +09:00
#########################################################################
# defines $(obj).depend target
include $(SRCTREE)/rules.mk
2003-05-23 20:35:47 +09:00
sinclude $(obj).depend
2003-05-23 20:35:47 +09:00
#########################################################################