summaryrefslogtreecommitdiff
path: root/board/m5271evb/Makefile
diff options
context:
space:
mode:
authorMarian Balakowicz <m8@semihalf.com>2006-05-09 11:54:44 +0200
committerMarian Balakowicz <m8@semihalf.com>2006-05-09 11:54:44 +0200
commit78b123cd69d485887f33ebd33ba1f9b27f8e6916 (patch)
treee5cbecab56c5e92b4135431b023b5687a8c90ab6 /board/m5271evb/Makefile
parent6f5155a95cc6d4b80cda10785c64a55fbb18e8ee (diff)
downloadu-boot-imx-78b123cd69d485887f33ebd33ba1f9b27f8e6916.zip
u-boot-imx-78b123cd69d485887f33ebd33ba1f9b27f8e6916.tar.gz
u-boot-imx-78b123cd69d485887f33ebd33ba1f9b27f8e6916.tar.bz2
Add M5271EVB board support.
Diffstat (limited to 'board/m5271evb/Makefile')
-rw-r--r--board/m5271evb/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/board/m5271evb/Makefile b/board/m5271evb/Makefile
new file mode 100644
index 0000000..34de983
--- /dev/null
+++ b/board/m5271evb/Makefile
@@ -0,0 +1,40 @@
+#
+# (C) Copyright 2000-2006
+# 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 = lib$(BOARD).a
+
+OBJS = $(BOARD).o
+
+$(LIB): .depend $(OBJS)
+ $(AR) crv $@ $(OBJS)
+
+#########################################################################
+
+.depend: Makefile $(SOBJS:.o=.S) $(OBJS:.o=.c)
+ $(CC) -M $(CFLAGS) $(SOBJS:.o=.S) $(OBJS:.o=.c) > $@
+
+sinclude .depend
+
+#########################################################################