diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-04-10 09:32:58 +0000 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2013-04-22 09:58:19 +0200 |
commit | 57ca432fb9f59cea48d8cde1dc1d5cc2f80993c7 (patch) | |
tree | c47ffb80d0befa69399f651cdcf513a6538bdf06 /board/freescale/mx6slevk/Makefile | |
parent | 25b4aa146a3056aa3b42fa9e1682e027b9596eca (diff) | |
download | u-boot-imx-57ca432fb9f59cea48d8cde1dc1d5cc2f80993c7.zip u-boot-imx-57ca432fb9f59cea48d8cde1dc1d5cc2f80993c7.tar.gz u-boot-imx-57ca432fb9f59cea48d8cde1dc1d5cc2f80993c7.tar.bz2 |
mx6sl: Add initial support for mx6slevk board
mx6slevk board is a development board from Freescale based on the mx6 solo-lite
processor.
For details about mx6slevk, please refer to:
http://www.freescale.com/webapp/sps/site/prod_summary.jsp?code=IMX6SLEVK&parentCode=i.MX6SL&fpsp=1
Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Diffstat (limited to 'board/freescale/mx6slevk/Makefile')
-rw-r--r-- | board/freescale/mx6slevk/Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/board/freescale/mx6slevk/Makefile b/board/freescale/mx6slevk/Makefile new file mode 100644 index 0000000..43af351 --- /dev/null +++ b/board/freescale/mx6slevk/Makefile @@ -0,0 +1,28 @@ +# (C) Copyright 2013 Freescale Semiconductor, Inc. +# +# 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. +# + +include $(TOPDIR)/config.mk + +LIB = $(obj)lib$(BOARD).o + +COBJS := mx6slevk.o + +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 + +######################################################################### |