summaryrefslogtreecommitdiff
path: root/board/mimc/mimc200/Makefile
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2008-08-21 00:41:03 +0200
committerWolfgang Denk <wd@denx.de>2008-08-21 00:41:03 +0200
commit9ba404dd59c14149f7a5338af1b5fe52558415da (patch)
tree2595376e4684ce3c88cf69468cc657c305823d1f /board/mimc/mimc200/Makefile
parentdb70b84329315c52f6ec77f5ae5ca1afe970a9bb (diff)
parent492671404140f09d5b21b3d2ce4e362c0692c069 (diff)
downloadu-boot-imx-9ba404dd59c14149f7a5338af1b5fe52558415da.zip
u-boot-imx-9ba404dd59c14149f7a5338af1b5fe52558415da.tar.gz
u-boot-imx-9ba404dd59c14149f7a5338af1b5fe52558415da.tar.bz2
Merge branch 'master' of git://git.denx.de/u-boot-avr32
Diffstat (limited to 'board/mimc/mimc200/Makefile')
-rw-r--r--board/mimc/mimc200/Makefile40
1 files changed, 40 insertions, 0 deletions
diff --git a/board/mimc/mimc200/Makefile b/board/mimc/mimc200/Makefile
new file mode 100644
index 0000000..9f3849f
--- /dev/null
+++ b/board/mimc/mimc200/Makefile
@@ -0,0 +1,40 @@
+#
+# Copyright (C) 2005-2006 Atmel Corporation
+#
+# 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),$(SOBJS) $(COBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(AR) $(ARFLAGS) $@ $(OBJS)
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################