summaryrefslogtreecommitdiff
path: root/board/mgsuvd/Makefile
diff options
context:
space:
mode:
authorHeiko Schocher <hs@denx.de>2008-10-15 09:32:25 +0200
committerWolfgang Denk <wd@denx.de>2008-10-18 21:54:01 +0200
commit86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686 (patch)
treedd1b3032f5a9736a81aa239ebbe2d14744d69c0a /board/mgsuvd/Makefile
parent1c6fe6eac75d695fde677af8330c0dbe75fb6a2b (diff)
downloadu-boot-imx-86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686.zip
u-boot-imx-86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686.tar.gz
u-boot-imx-86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686.tar.bz2
mgsuvd, mgcoge: move this 2 boards in one dir.
There are some more extensions, which are for both boards and some more boards from this manufacturer will follow soon. Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: Wolfgang Denk <wd@denx.de>
Diffstat (limited to 'board/mgsuvd/Makefile')
-rw-r--r--board/mgsuvd/Makefile44
1 files changed, 0 insertions, 44 deletions
diff --git a/board/mgsuvd/Makefile b/board/mgsuvd/Makefile
deleted file mode 100644
index af0d400..0000000
--- a/board/mgsuvd/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-#
-# (C) Copyright 2007
-# Heiko Schocher, DENX Software Engineering, hs@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).a
-
-COBJS = $(BOARD).o
-
-SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
-OBJS := $(addprefix $(obj),$(COBJS))
-SOBJS := $(addprefix $(obj),$(SOBJS))
-
-$(LIB): $(obj).depend $(OBJS)
- $(AR) $(ARFLAGS) $@ $(OBJS)
-
-#########################################################################
-
-# defines $(obj).depend target
-include $(SRCTREE)/rules.mk
-
-sinclude $(obj).depend
-
-#########################################################################