diff options
author | Heiko Schocher <hs@denx.de> | 2008-10-15 09:32:25 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-10-18 21:54:01 +0200 |
commit | 86e9cdf8c415c1a9725e9dae5237ba1e7bd9f686 (patch) | |
tree | dd1b3032f5a9736a81aa239ebbe2d14744d69c0a /board/mgcoge/Makefile | |
parent | 1c6fe6eac75d695fde677af8330c0dbe75fb6a2b (diff) | |
download | u-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/mgcoge/Makefile')
-rw-r--r-- | board/mgcoge/Makefile | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/board/mgcoge/Makefile b/board/mgcoge/Makefile deleted file mode 100644 index d4087cc..0000000 --- a/board/mgcoge/Makefile +++ /dev/null @@ -1,50 +0,0 @@ -# -# (C) Copyright 2001-2007 -# 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).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) - -clean: - rm -f $(SOBJS) $(OBJS) - -distclean: clean - rm -f $(LIB) core *.bak $(obj).depend - -######################################################################### - -# defines $(obj).depend target -include $(SRCTREE)/rules.mk - -sinclude $(obj).depend - -######################################################################### |