summaryrefslogtreecommitdiffstats
path: root/board/freescale/mx23evk/Makefile
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2013-01-23 10:30:34 +0000
committerStefano Babic <sbabic@denx.de>2013-01-28 11:51:04 +0100
commit81ca840976e8e418ae8decaf03ea01f59b1b5be2 (patch)
treed3b7a24a1081e7ab9b07c2bdc9898348099c81fa /board/freescale/mx23evk/Makefile
parent38fc15d86c602f9b2411d81bf82c4bbd807b0704 (diff)
downloadblackbird-obmc-uboot-81ca840976e8e418ae8decaf03ea01f59b1b5be2.tar.gz
blackbird-obmc-uboot-81ca840976e8e418ae8decaf03ea01f59b1b5be2.zip
mx23evk: Add initial board support
The following features are supported: * 128 MB DDR1 SDRAM * DUART * SD/MMC Card Socket Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Tested-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/freescale/mx23evk/Makefile')
-rw-r--r--board/freescale/mx23evk/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/board/freescale/mx23evk/Makefile b/board/freescale/mx23evk/Makefile
new file mode 100644
index 0000000000..7518d7bc90
--- /dev/null
+++ b/board/freescale/mx23evk/Makefile
@@ -0,0 +1,47 @@
+#
+# (C) Copyright 2000-2006
+# 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 = $(obj)lib$(BOARD).o
+
+ifndef CONFIG_SPL_BUILD
+COBJS := mx23evk.o
+else
+COBJS := spl_boot.o
+endif
+
+SRCS := $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################
OpenPOWER on IntegriCloud