diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-24 14:21:16 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2006-10-24 14:21:16 +0200 |
commit | 7b64fef33c66be648826c0ff9758298ef13d0604 (patch) | |
tree | ea8a3685319987b5d135c2f48e9bc1eee4720640 /lib_avr32/Makefile | |
parent | 2da2d9a4766063b9848f3a35ad6025499cf87265 (diff) | |
download | u-boot-imx-7b64fef33c66be648826c0ff9758298ef13d0604.zip u-boot-imx-7b64fef33c66be648826c0ff9758298ef13d0604.tar.gz u-boot-imx-7b64fef33c66be648826c0ff9758298ef13d0604.tar.bz2 |
Add AVR32 architecture support
Patch by Haavard Skinnemoen, 6 Sep 2006 16:23:02 +0200
This patch adds common infrastructure code for the Atmel AVR32
architecture. See doc/README.AVR32 for details.
Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com>
Diffstat (limited to 'lib_avr32/Makefile')
-rw-r--r-- | lib_avr32/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lib_avr32/Makefile b/lib_avr32/Makefile new file mode 100644 index 0000000..5b6300b --- /dev/null +++ b/lib_avr32/Makefile @@ -0,0 +1,47 @@ +# +# (C) Copyright 2002-2006 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# (C) Copyright 2004-2006 Atmel Corporation +# +# See file CREDITS for list of people who contributed to this +# project. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation; either version 2 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, +# MA 02111-1307 USA +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(ARCH).a + +SOBJS = memset.o + +COBJS = board.o interrupts.o avr32_linux.o div64.o + +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(AR) crv $@ $(OBJS) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |