diff options
author | Chander Kashyap <chander.kashyap@linaro.org> | 2011-08-18 22:37:19 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-09-04 11:36:15 +0200 |
commit | b9a1ef219e12c08b2af695dd5355d6352b8ffc08 (patch) | |
tree | 64118b52dd0104ed6068f73abc293751a361be28 /board/samsung/origen/Makefile | |
parent | 85776b02143ef8bbf5cc54e09ff1b4f020be11a9 (diff) | |
download | talos-obmc-uboot-b9a1ef219e12c08b2af695dd5355d6352b8ffc08.tar.gz talos-obmc-uboot-b9a1ef219e12c08b2af695dd5355d6352b8ffc08.zip |
ARMV7: Add support for Samsung ORIGEN board
Origen board is based upon S5PV310 SoC which is similiar to
S5PC210 SoC.
Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'board/samsung/origen/Makefile')
-rw-r--r-- | board/samsung/origen/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/board/samsung/origen/Makefile b/board/samsung/origen/Makefile new file mode 100644 index 0000000000..65eff91c91 --- /dev/null +++ b/board/samsung/origen/Makefile @@ -0,0 +1,46 @@ +# +# Copyright (C) 2011 Samsung Electronics +# +# 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 + +SOBJS := mem_setup.o +SOBJS += lowlevel_init.o +COBJS += origen.o + +SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS) $(SOBJS)) + +all: $(obj).depend $(LIB) + +$(LIB): $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |