blob: 12c1ba730cbfdc21f0d11adf233827c9412fa361 [file] [log] [blame]
stroese071d8972003-05-23 11:35:47 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2000-2006
stroese071d8972003-05-23 11:35:47 +00003# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4#
5# See file CREDITS for list of people who contributed to this
6# project.
7#
8# This program is free software; you can redistribute it and/or
9# modify it under the terms of the GNU General Public License as
10# published by the Free Software Foundation; either version 2 of
11# the License, or (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; if not, write to the Free Software
20# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21# MA 02111-1307 USA
22#
23
24include $(TOPDIR)/config.mk
Marian Balakowiczf9328632006-09-01 19:49:50 +020025ifneq ($(OBJTREE),$(SRCTREE))
26$(shell mkdir -p $(obj)../common/xilinx_jtag)
27endif
stroese071d8972003-05-23 11:35:47 +000028
Marian Balakowiczf9328632006-09-01 19:49:50 +020029LIB = $(obj)lib$(BOARD).a
stroese071d8972003-05-23 11:35:47 +000030
stroeseef9e8682003-09-12 08:46:58 +000031# Objects for Xilinx JTAG programming (CPLD)
32CPLD = ../common/xilinx_jtag/lenval.o \
33 ../common/xilinx_jtag/micro.o \
34 ../common/xilinx_jtag/ports.o
35
Marian Balakowiczf9328632006-09-01 19:49:50 +020036COBJS = $(BOARD).o ../common/misc.o ../common/cmd_loadpci.o $(CPLD)
37
38SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
39OBJS := $(addprefix $(obj),$(COBJS))
40SOBJS := $(addprefix $(obj),$(SOBJS))
stroese071d8972003-05-23 11:35:47 +000041
42$(LIB): $(OBJS) $(SOBJS)
Wolfgang Denk2b208f52006-10-09 01:02:05 +020043 $(AR) $(ARFLAGS) $@ $(OBJS)
stroese071d8972003-05-23 11:35:47 +000044
45clean:
46 rm -f $(SOBJS) $(OBJS)
47
48distclean: clean
Wolfgang Denkc8a3b102008-07-02 23:49:18 +020049 rm -f $(LIB) core *.bak $(obj).depend
stroese071d8972003-05-23 11:35:47 +000050
51#########################################################################
52
Marian Balakowiczf9328632006-09-01 19:49:50 +020053# defines $(obj).depend target
54include $(SRCTREE)/rules.mk
stroese071d8972003-05-23 11:35:47 +000055
Marian Balakowiczf9328632006-09-01 19:49:50 +020056sinclude $(obj).depend
stroese071d8972003-05-23 11:35:47 +000057
58#########################################################################