diff options
author | Mike Rapoport <mike@compulab.co.il> | 2010-12-18 17:43:19 -0500 |
---|---|---|
committer | Albert Aribaud <albert.aribaud@free.fr> | 2011-02-02 00:54:43 +0100 |
commit | 36b4e2dddd3ee481411fa50e1c34dbf823eb5f5d (patch) | |
tree | 815f29ee7e67db5fb8866c965babae5f3693dc9f /board/cm_t35/Makefile | |
parent | a4594e41b907f60c85ed1cf96b65602f6b587a50 (diff) | |
download | u-boot-imx-36b4e2dddd3ee481411fa50e1c34dbf823eb5f5d.zip u-boot-imx-36b4e2dddd3ee481411fa50e1c34dbf823eb5f5d.tar.gz u-boot-imx-36b4e2dddd3ee481411fa50e1c34dbf823eb5f5d.tar.bz2 |
OMAP3: add CM-T35 board
This patch adds support for CM-T35 board
Signed-off-by: Mike Rapoport <mike@compulab.co.il>
Signed-off-by: Sandeep Paulraj <s-paulraj@ti.com>
Diffstat (limited to 'board/cm_t35/Makefile')
-rw-r--r-- | board/cm_t35/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/board/cm_t35/Makefile b/board/cm_t35/Makefile new file mode 100644 index 0000000..862b8dc --- /dev/null +++ b/board/cm_t35/Makefile @@ -0,0 +1,47 @@ +# +# (C) Copyright 2000, 2001, 2002 +# 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 + +COBJS := cm_t35.o + +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +clean: + rm -f $(OBJS) + +distclean: clean + rm -f $(LIB) core *.bak $(obj).depend + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend |