diff options
author | Marek Vasut <marek.vasut@gmail.com> | 2011-11-26 10:29:36 (GMT) |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-12-06 22:59:33 (GMT) |
commit | ef426d45cc94678eab90ebaf1b62fe0f4f0e4691 (patch) | |
tree | 632a0044efa43d0f3532e8bd2ab03b19476f12a7 /board/toradex/colibri_pxa270/Makefile | |
parent | 67a1f00c7c4bd485b28041c9cc1289af0a9f1df7 (diff) | |
download | u-boot-fsl-qoriq-ef426d45cc94678eab90ebaf1b62fe0f4f0e4691.tar.xz |
PXA: Move colibri_pxa270 to board/toradex/
Signed-off-by: Marek Vasut <marek.vasut@gmail.com>
Diffstat (limited to 'board/toradex/colibri_pxa270/Makefile')
-rw-r--r-- | board/toradex/colibri_pxa270/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/board/toradex/colibri_pxa270/Makefile b/board/toradex/colibri_pxa270/Makefile new file mode 100644 index 0000000..854b19b --- /dev/null +++ b/board/toradex/colibri_pxa270/Makefile @@ -0,0 +1,41 @@ +# +# Toradex Colibri PXA270 Support +# +# Copyright (C) 2010 Marek Vasut <marek.vasut@gmail.com> +# +# 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 + +COBJS := colibri_pxa270.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 + +######################################################################### |