diff options
author | SRICHARAN R <r.sricharan@ti.com> | 2013-04-01 05:52:38 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-04-08 11:29:05 -0400 |
commit | 2c2a9f3a1f8c92bee8b009db0d6187bfcbea661d (patch) | |
tree | 690cf4b084bb1dd12cb18a02749ed9355e7d46f7 /board/ti/omap5_uevm/Makefile | |
parent | d1da76e9f8987529fadaa56d97d29e5d8ab8f918 (diff) | |
download | u-boot-imx-2c2a9f3a1f8c92bee8b009db0d6187bfcbea661d.zip u-boot-imx-2c2a9f3a1f8c92bee8b009db0d6187bfcbea661d.tar.gz u-boot-imx-2c2a9f3a1f8c92bee8b009db0d6187bfcbea661d.tar.bz2 |
ARM: OMAP5: Rename omap5_evm to omap5_uevm
The omap5-uevm is the reference board name for OMAP5 soc
based platform. So rename it accordingly.
Acked-by: Nishanth Menon <nm@ti.com>
Signed-off-by: Sricharan R <r.sricharan@ti.com>
Tested-by: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'board/ti/omap5_uevm/Makefile')
-rw-r--r-- | board/ti/omap5_uevm/Makefile | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/board/ti/omap5_uevm/Makefile b/board/ti/omap5_uevm/Makefile new file mode 100644 index 0000000..fa81d64 --- /dev/null +++ b/board/ti/omap5_uevm/Makefile @@ -0,0 +1,49 @@ +# +# (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 := evm.o + +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(call cmd_link_o_target, $(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 + +######################################################################### |