Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 1 | # |
| 2 | # (C) Copyright 2000-2008 |
Stelian Pop | 5049752 | 2008-05-08 22:52:09 +0200 | [diff] [blame] | 3 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 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 | |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 26 | LIB = $(obj)lib$(SOC).o |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 27 | |
Jean-Christophe PLAGNIOL-VILLARD | 2495b2d | 2009-05-13 21:01:13 +0200 | [diff] [blame] | 28 | COBJS-$(CONFIG_AT91CAP9) += at91cap9_devices.o |
| 29 | COBJS-$(CONFIG_AT91SAM9260) += at91sam9260_devices.o |
| 30 | COBJS-$(CONFIG_AT91SAM9G20) += at91sam9260_devices.o |
Reinhard Meyer | e260d0b | 2010-11-03 15:39:55 +0100 | [diff] [blame] | 31 | COBJS-$(CONFIG_AT91SAM9XE) += at91sam9260_devices.o |
Jean-Christophe PLAGNIOL-VILLARD | 2495b2d | 2009-05-13 21:01:13 +0200 | [diff] [blame] | 32 | COBJS-$(CONFIG_AT91SAM9261) += at91sam9261_devices.o |
Sedji Gaouaou | 97a031b | 2009-06-25 17:04:15 +0200 | [diff] [blame] | 33 | COBJS-$(CONFIG_AT91SAM9G10) += at91sam9261_devices.o |
Jean-Christophe PLAGNIOL-VILLARD | 2495b2d | 2009-05-13 21:01:13 +0200 | [diff] [blame] | 34 | COBJS-$(CONFIG_AT91SAM9263) += at91sam9263_devices.o |
| 35 | COBJS-$(CONFIG_AT91SAM9RL) += at91sam9rl_devices.o |
Sedji Gaouaou | 538566d | 2009-07-09 10:16:29 +0200 | [diff] [blame] | 36 | COBJS-$(CONFIG_AT91SAM9M10G45) += at91sam9m10g45_devices.o |
| 37 | COBJS-$(CONFIG_AT91SAM9G45) += at91sam9m10g45_devices.o |
Reinhard Meyer | 8ec18f4 | 2010-07-27 15:18:38 +0200 | [diff] [blame] | 38 | COBJS-$(CONFIG_AT91_EFLASH) += eflash.o |
Jean-Christophe PLAGNIOL-VILLARD | 476d10e | 2009-03-21 21:08:00 +0100 | [diff] [blame] | 39 | COBJS-$(CONFIG_AT91_LED) += led.o |
Jean-Christophe PLAGNIOL-VILLARD | 23164f1 | 2009-04-16 21:30:44 +0200 | [diff] [blame] | 40 | COBJS-y += clock.o |
| 41 | COBJS-y += cpu.o |
Jean-Christophe PLAGNIOL-VILLARD | 9c5c824 | 2009-05-31 12:44:45 +0200 | [diff] [blame] | 42 | COBJS-y += reset.o |
Jean-Christophe PLAGNIOL-VILLARD | 4c2b465 | 2008-03-31 21:20:49 +0200 | [diff] [blame] | 43 | COBJS-y += timer.o |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 44 | |
Jean-Christophe PLAGNIOL-VILLARD | e32eb4c | 2009-06-13 12:50:04 +0200 | [diff] [blame] | 45 | ifndef CONFIG_SKIP_LOWLEVEL_INIT |
| 46 | SOBJS-y := lowlevel_init.o |
| 47 | endif |
| 48 | |
| 49 | SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) |
| 50 | OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 51 | |
Jean-Christophe PLAGNIOL-VILLARD | 13b60ed | 2009-05-01 15:38:06 +0200 | [diff] [blame] | 52 | all: $(obj).depend $(LIB) |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 53 | |
| 54 | $(LIB): $(OBJS) |
Sebastien Carlier | a8d426f | 2010-11-05 15:48:07 +0100 | [diff] [blame] | 55 | $(call cmd_link_o_target, $(OBJS)) |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 56 | |
Stelian Pop | d1aea1c | 2008-01-30 21:15:54 +0000 | [diff] [blame] | 57 | ######################################################################### |
| 58 | |
| 59 | # defines $(obj).depend target |
| 60 | include $(SRCTREE)/rules.mk |
| 61 | |
| 62 | sinclude $(obj).depend |
| 63 | |
| 64 | ######################################################################### |