]> git.ipfire.org Git - people/ms/u-boot.git/blame - cpu/arm926ejs/at91/Makefile
Merge branch 'master' of git://git.denx.de/u-boot-blackfin
[people/ms/u-boot.git] / cpu / arm926ejs / at91 / Makefile
CommitLineData
fefb6c10
SP
1#
2# (C) Copyright 2000-2008
cce9cfda 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
fefb6c10
SP
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
25
26LIB = $(obj)lib$(SOC).a
27
7ebafb7e 28ifdef CONFIG_AT91CAP9
e2c0476f 29COBJS-$(CONFIG_MACB) += at91cap9_macb.o
7ebafb7e
JCPV
30COBJS-y += at91cap9_serial.o
31COBJS-$(CONFIG_HAS_DATAFLASH) += at91cap9_spi.o
32endif
33ifdef CONFIG_AT91SAM9260
e2c0476f 34COBJS-$(CONFIG_MACB) += at91sam9260_macb.o
7ebafb7e
JCPV
35COBJS-y += at91sam9260_serial.o
36COBJS-$(CONFIG_HAS_DATAFLASH) += at91sam9260_spi.o
df486b1f
NF
37endif
38ifdef CONFIG_AT91SAM9G20
39COBJS-$(CONFIG_MACB) += at91sam9260_macb.o
40COBJS-y += at91sam9260_serial.o
41COBJS-$(CONFIG_HAS_DATAFLASH) += at91sam9260_spi.o
7ebafb7e
JCPV
42endif
43ifdef CONFIG_AT91SAM9261
44COBJS-y += at91sam9261_serial.o
45COBJS-$(CONFIG_HAS_DATAFLASH) += at91sam9261_spi.o
46endif
47ifdef CONFIG_AT91SAM9263
e2c0476f 48COBJS-$(CONFIG_MACB) += at91sam9263_macb.o
7ebafb7e
JCPV
49COBJS-y += at91sam9263_serial.o
50COBJS-$(CONFIG_HAS_DATAFLASH) += at91sam9263_spi.o
f3f91f88 51COBJS-$(CONFIG_USB_OHCI_NEW) += at91sam9263_usb.o
7ebafb7e
JCPV
52endif
53ifdef CONFIG_AT91SAM9RL
54COBJS-y += at91sam9rl_serial.o
55COBJS-$(CONFIG_HAS_DATAFLASH) += at91sam9rl_spi.o
56endif
a484b00b 57COBJS-$(CONFIG_AT91_LED) += led.o
1762f13b 58COBJS-y += timer.o
fefb6c10
SP
59SOBJS = lowlevel_init.o
60
1762f13b
JCPV
61SRCS := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
62OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
fefb6c10
SP
63
64all: $(obj).depend $(LIB)
65
66$(LIB): $(OBJS)
67 $(AR) $(ARFLAGS) $@ $(OBJS)
68
69#########################################################################
70
71# defines $(obj).depend target
72include $(SRCTREE)/rules.mk
73
74sinclude $(obj).depend
75
76#########################################################################