diff options
author | Stefan Roese <sr@denx.de> | 2007-03-21 13:39:57 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2007-03-21 13:39:57 +0100 |
commit | 16c0cc1c82081a493ab87c51980b28336ce1bce8 (patch) | |
tree | a5b30fe483fb49f1a25883f25f8fbe06a5724125 /board/amcc/acadia/Makefile | |
parent | e01bd218b00af73499331a1a701625a852cd286f (diff) | |
download | u-boot-imx-16c0cc1c82081a493ab87c51980b28336ce1bce8.zip u-boot-imx-16c0cc1c82081a493ab87c51980b28336ce1bce8.tar.gz u-boot-imx-16c0cc1c82081a493ab87c51980b28336ce1bce8.tar.bz2 |
[PATCH] Add AMCC Acadia (405EZ) eval board support
This patch adds support for the new AMCC Acadia eval board.
Please note that this Acadia/405EZ support is still in a beta stage.
Still lot's of cleanup needed but we need a preliminary release now.
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'board/amcc/acadia/Makefile')
-rw-r--r-- | board/amcc/acadia/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/board/amcc/acadia/Makefile b/board/amcc/acadia/Makefile new file mode 100644 index 0000000..183f694 --- /dev/null +++ b/board/amcc/acadia/Makefile @@ -0,0 +1,47 @@ +# +# (C) Copyright 2007 +# Wolfgang Denk, DENX Software Engineering, wd@denx.de. +# +# 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 = lib$(BOARD).a + +OBJS = $(BOARD).o cpr.o memory.o +SOBJS = + +$(LIB): $(OBJS) $(SOBJS) + $(AR) crv $@ $(OBJS) $(SOBJS) + +clean: + rm -f $(SOBJS) $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak .depend + +######################################################################### + +.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c) + $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@ + +sinclude .depend + +######################################################################### |