summaryrefslogtreecommitdiff
path: root/board/olimex/mx23_olinuxino/Makefile
diff options
context:
space:
mode:
authorKim Phillips <kim.phillips@freescale.com>2013-02-15 17:46:50 -0600
committerKim Phillips <kim.phillips@freescale.com>2013-02-15 17:46:50 -0600
commit9a82b10c6657c5744802971036bb564ebc660291 (patch)
treeb276e71216b06494aa78d45d740b66e31c566233 /board/olimex/mx23_olinuxino/Makefile
parent9a32084ea0cf55d22384f083002ee9932e074f31 (diff)
parent9f024f62e4604274a23213dcee30016092e32e7b (diff)
downloadu-boot-imx-9a82b10c6657c5744802971036bb564ebc660291.zip
u-boot-imx-9a82b10c6657c5744802971036bb564ebc660291.tar.gz
u-boot-imx-9a82b10c6657c5744802971036bb564ebc660291.tar.bz2
Merge branch 'master' of git://git.denx.de/u-boot
Diffstat (limited to 'board/olimex/mx23_olinuxino/Makefile')
-rw-r--r--board/olimex/mx23_olinuxino/Makefile47
1 files changed, 47 insertions, 0 deletions
diff --git a/board/olimex/mx23_olinuxino/Makefile b/board/olimex/mx23_olinuxino/Makefile
new file mode 100644
index 0000000..ff41cff
--- /dev/null
+++ b/board/olimex/mx23_olinuxino/Makefile
@@ -0,0 +1,47 @@
+#
+# (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 = $(obj)lib$(BOARD).o
+
+ifndef CONFIG_SPL_BUILD
+COBJS := mx23_olinuxino.o
+else
+COBJS := spl_boot.o
+endif
+
+SRCS := $(COBJS:.o=.c)
+OBJS := $(addprefix $(obj),$(COBJS))
+
+$(LIB): $(obj).depend $(OBJS)
+ $(call cmd_link_o_target, $(OBJS))
+
+#########################################################################
+
+# defines $(obj).depend target
+include $(SRCTREE)/rules.mk
+
+sinclude $(obj).depend
+
+#########################################################################