diff options
author | John Schmoller <jschmoller@xes-inc.com> | 2010-10-22 00:20:34 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-10-22 03:04:41 -0500 |
commit | bfe18815e8123f4456be8b5858b2b255d7881698 (patch) | |
tree | 22142b0194d8b53f3733d705b8098d86b6eabbd3 /board/xes/xpedite550x/Makefile | |
parent | 66a8b440af02397ffb3f850e9195c50fb5d37da6 (diff) | |
download | u-boot-imx-bfe18815e8123f4456be8b5858b2b255d7881698.zip u-boot-imx-bfe18815e8123f4456be8b5858b2b255d7881698.tar.gz u-boot-imx-bfe18815e8123f4456be8b5858b2b255d7881698.tar.bz2 |
XPedite5500 board support
Initial support for Extreme Engineering Solutions XPedite5500 -
a P2020-based PMC/XMC single board computer.
Signed-off-by: John Schmoller <jschmoller@xes-inc.com>
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/xes/xpedite550x/Makefile')
-rw-r--r-- | board/xes/xpedite550x/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/board/xes/xpedite550x/Makefile b/board/xes/xpedite550x/Makefile new file mode 100644 index 0000000..8980a4b --- /dev/null +++ b/board/xes/xpedite550x/Makefile @@ -0,0 +1,39 @@ +# +# Copyright 2007-2008 Freescale Semiconductor, Inc. +# +# 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. +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).a + +COBJS-y += $(BOARD).o +COBJS-y += ddr.o +COBJS-y += law.o +COBJS-y += tlb.o + +SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS-y)) +SOBJS := $(addprefix $(obj),$(SOBJS-y)) + +$(LIB): $(obj).depend $(OBJS) $(SOBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +clean: + rm -f $(OBJS) $(SOBJS) + +distclean: clean + rm -f $(LIB) core *.bak .depend + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |