blob: 06fa2f3f4485901c66ae63f242753e4bf56328e0 [file] [log] [blame]
wdenk7a8e9bed2003-05-31 18:35:21 +00001#
Marian Balakowiczf9328632006-09-01 19:49:50 +02002# (C) Copyright 2006
3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Wolfgang Denk511d0c72006-10-09 00:42:01 +02004#
wdenk7a8e9bed2003-05-31 18:35:21 +00005# (C) Copyright 2002
6# Daniel Engström, Omicron Ceti AB, daniel@omicron.se.
7#
8# See file CREDITS for list of people who contributed to this
9# project.
10#
11# This program is free software; you can redistribute it and/or
12# modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 2 of
14# the License, or (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24# MA 02111-1307 USA
25#
26
27include $(TOPDIR)/config.mk
28
Marian Balakowiczf9328632006-09-01 19:49:50 +020029LIB = $(obj)lib$(BOARD).a
wdenk7a8e9bed2003-05-31 18:35:21 +000030
Graeme Russf50b6192009-08-23 12:59:57 +100031COBJS-y += sc520_spunk.o
32COBJS-y += flash.o
33COBJS-$(CONFIG_PCI) += sc520_spunk_pci.o
34SOBJS-y += sc520_spunk_asm.o
35SOBJS-y += sc520_spunk_asm16.o
wdenk7a8e9bed2003-05-31 18:35:21 +000036
Graeme Russf50b6192009-08-23 12:59:57 +100037SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c)
38OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y))
Marian Balakowiczf9328632006-09-01 19:49:50 +020039
40$(LIB): $(obj).depend $(OBJS) $(SOBJS)
Jean-Christophe PLAGNIOL-VILLARD311f3442008-05-18 19:09:57 +020041 $(AR) $(ARFLAGS) $@ $(OBJS) $(SOBJS)
wdenk7a8e9bed2003-05-31 18:35:21 +000042
43clean:
44 rm -f $(SOBJS) $(OBJS)
45
46distclean: clean
Wolfgang Denkc8a3b102008-07-02 23:49:18 +020047 rm -f $(LIB) core *.bak $(obj).depend
wdenk7a8e9bed2003-05-31 18:35:21 +000048
49#########################################################################
50
Marian Balakowiczf9328632006-09-01 19:49:50 +020051# defines $(obj).depend target
52include $(SRCTREE)/rules.mk
wdenk7a8e9bed2003-05-31 18:35:21 +000053
Marian Balakowiczf9328632006-09-01 19:49:50 +020054sinclude $(obj).depend
wdenk7a8e9bed2003-05-31 18:35:21 +000055
56#########################################################################