diff options
author | Stefano Babic <sbabic@denx.de> | 2011-11-30 23:56:53 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-24 10:23:29 +0100 |
commit | 92e30c07e02b84a3b63205fcb29ac57defd043f6 (patch) | |
tree | 285a7b72f0a3e47f54175f7f17a19a4001031f3f /board/technexion/twister/Makefile | |
parent | f9c6fac497e1ad4a2a54158eb8c3e8e1450edd5d (diff) | |
download | u-boot-imx-92e30c07e02b84a3b63205fcb29ac57defd043f6.zip u-boot-imx-92e30c07e02b84a3b63205fcb29ac57defd043f6.tar.gz u-boot-imx-92e30c07e02b84a3b63205fcb29ac57defd043f6.tar.bz2 |
ARM: omap3: add support to Technexion twister board
The twister board is a development board using
the TAM3517 SOM.
Support for NAND, 2 Ethernet (EMAC and SMC911),
USB (EHCI_OMAP).
Signed-off-by: Stefano Babic <sbabic@denx.de>
CC: Tapani Utrianen <tapani@technexion.com>
CC: Tom Rini <tom.rini@gmail.com>
CC: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/technexion/twister/Makefile')
-rw-r--r-- | board/technexion/twister/Makefile | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/board/technexion/twister/Makefile b/board/technexion/twister/Makefile new file mode 100644 index 0000000..38b7b14 --- /dev/null +++ b/board/technexion/twister/Makefile @@ -0,0 +1,38 @@ +# +# Copyright (C) 2011 Ilya Yanok, Emcraft Systems +# +# Based on ti/evm/Makefile +# +# 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., 675 Mass Ave, Cambridge, MA 02139, USA. +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).o + +COBJS := $(BOARD).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 |