diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-03-15 10:43:48 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-03-20 11:47:37 +0100 |
commit | e2d282a1b468559c5f7e847db75eeca99644148a (patch) | |
tree | 3229a6d2433a451ef2660f1ea8b289e1f9ce829c /board/wandboard/Makefile | |
parent | 209b5710649cb855abe362268348df91bede6565 (diff) | |
download | u-boot-imx-e2d282a1b468559c5f7e847db75eeca99644148a.zip u-boot-imx-e2d282a1b468559c5f7e847db75eeca99644148a.tar.gz u-boot-imx-e2d282a1b468559c5f7e847db75eeca99644148a.tar.bz2 |
Add initial support for Wandboard dual lite and solo.
Wandboard is a development board that has two variants: one version based
on mx6 dual lite and another one based on mx6 solo.
For more details about Wandboard, please refer to: http://www.wandboard.org/
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/wandboard/Makefile')
-rw-r--r-- | board/wandboard/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/board/wandboard/Makefile b/board/wandboard/Makefile new file mode 100644 index 0000000..014ea6c --- /dev/null +++ b/board/wandboard/Makefile @@ -0,0 +1,29 @@ +# +# (C) Copyright 2013 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).o + +COBJS := wandboard.o + +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 + +######################################################################### |