diff options
author | Pali Rohár <pali.rohar@gmail.com> | 2012-10-29 07:54:01 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2012-10-30 15:28:06 -0700 |
commit | ed407be53e1e8f0be90d5723ca71ab1c37e2eed8 (patch) | |
tree | 73f825138d0a6cf47124b558473cd8865af7fffc /board/nokia/rx51/Makefile | |
parent | 33a35bbbe09a9b63b46e86a97d5dfbdae5481401 (diff) | |
download | u-boot-imx-ed407be53e1e8f0be90d5723ca71ab1c37e2eed8.zip u-boot-imx-ed407be53e1e8f0be90d5723ca71ab1c37e2eed8.tar.gz u-boot-imx-ed407be53e1e8f0be90d5723ca71ab1c37e2eed8.tar.bz2 |
New board support: Nokia RX-51 aka N900
Based on previous work by: Alistair Buxton <a.j.buxton@gmail.com>
Signed-off-by: Pali Rohár <pali.rohar@gmail.com>
Cc: Ивайло Димитров <freemangordon@abv.bg>
Diffstat (limited to 'board/nokia/rx51/Makefile')
-rw-r--r-- | board/nokia/rx51/Makefile | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/board/nokia/rx51/Makefile b/board/nokia/rx51/Makefile new file mode 100644 index 0000000..86fb48c --- /dev/null +++ b/board/nokia/rx51/Makefile @@ -0,0 +1,46 @@ +# +# (C) Copyright 2000, 2001, 2002 +# 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 + +COBJS-y := $(BOARD).o +SOBJS-y := lowlevel_init.o + +COBJS := $(sort $(COBJS-y)) +SOBJS := $(sort $(SOBJS-y)) +SRCS := $(COBJS:.o=.c) $(SOBJS:.o=.S) +OBJS := $(addprefix $(obj),$(COBJS)) $(addprefix $(obj),$(SOBJS)) + +$(LIB): $(obj).depend $(OBJS) + $(call cmd_link_o_target, $(OBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |