]> git.karo-electronics.de Git - karo-tx-uboot.git/blob - cpu/arm926ejs/at91/Makefile
3d45c427cc0d2da28548e6322b46bf2918c8d20c
[karo-tx-uboot.git] / cpu / arm926ejs / at91 / Makefile
1 #
2 # (C) Copyright 2000-2008
3 # 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
24 include $(TOPDIR)/config.mk
25
26 LIB     = $(obj)lib$(SOC).a
27
28 ifdef CONFIG_AT91CAP9
29 COBJS-$(CONFIG_MACB)            += at91cap9_macb.o
30 COBJS-y                         += at91cap9_serial.o
31 COBJS-$(CONFIG_HAS_DATAFLASH)   += at91cap9_spi.o
32 endif
33 ifdef CONFIG_AT91SAM9260
34 COBJS-$(CONFIG_MACB)            += at91sam9260_macb.o
35 COBJS-y                         += at91sam9260_serial.o
36 COBJS-$(CONFIG_HAS_DATAFLASH)   += at91sam9260_spi.o
37 endif
38 ifdef CONFIG_AT91SAM9G20
39 COBJS-$(CONFIG_MACB)            += at91sam9260_macb.o
40 COBJS-y                         += at91sam9260_serial.o
41 COBJS-$(CONFIG_HAS_DATAFLASH)   += at91sam9260_spi.o
42 endif
43 ifdef CONFIG_AT91SAM9261
44 COBJS-y                         += at91sam9261_serial.o
45 COBJS-$(CONFIG_HAS_DATAFLASH)   += at91sam9261_spi.o
46 endif
47 ifdef CONFIG_AT91SAM9263
48 COBJS-$(CONFIG_MACB)            += at91sam9263_macb.o
49 COBJS-y                         += at91sam9263_serial.o
50 COBJS-$(CONFIG_HAS_DATAFLASH)   += at91sam9263_spi.o
51 COBJS-$(CONFIG_USB_OHCI_NEW)    += at91sam9263_usb.o
52 endif
53 ifdef CONFIG_AT91SAM9RL
54 COBJS-y                         += at91sam9rl_serial.o
55 COBJS-$(CONFIG_HAS_DATAFLASH)   += at91sam9rl_spi.o
56 endif
57 COBJS-$(CONFIG_AT91_LED)        += led.o
58 COBJS-y += clock.o
59 COBJS-y += cpu.o
60 COBJS-y += timer.o
61 SOBJS   = lowlevel_init.o
62
63 SRCS    := $(SOBJS:.o=.S) $(COBJS-y:.o=.c)
64 OBJS    := $(addprefix $(obj),$(SOBJS) $(COBJS-y))
65
66 all:    $(obj).depend $(LIB)
67
68 $(LIB): $(OBJS)
69         $(AR) $(ARFLAGS) $@ $(OBJS)
70
71 #########################################################################
72
73 # defines $(obj).depend target
74 include $(SRCTREE)/rules.mk
75
76 sinclude $(obj).depend
77
78 #########################################################################