diff options
author | Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> | 2011-11-26 19:04:52 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-01-13 21:16:48 +0100 |
commit | e0f1fd4c82129eab2c607763f3bdb376eda7dd84 (patch) | |
tree | 9118f3d7daccc676dfe2e69cd5da9e4691cc05e6 /arch/openrisc/lib/Makefile | |
parent | 272f84bbdf10839cd2363396420a087af1f298f7 (diff) | |
download | u-boot-imx-e0f1fd4c82129eab2c607763f3bdb376eda7dd84.zip u-boot-imx-e0f1fd4c82129eab2c607763f3bdb376eda7dd84.tar.gz u-boot-imx-e0f1fd4c82129eab2c607763f3bdb376eda7dd84.tar.bz2 |
openrisc: Add library functions
Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Diffstat (limited to 'arch/openrisc/lib/Makefile')
-rw-r--r-- | arch/openrisc/lib/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/arch/openrisc/lib/Makefile b/arch/openrisc/lib/Makefile new file mode 100644 index 0000000..db3c657 --- /dev/null +++ b/arch/openrisc/lib/Makefile @@ -0,0 +1,47 @@ +# +# (C) Copyright 2003-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$(ARCH).o + +SOBJS-y += + +COBJS-y += board.o +COBJS-y += bootm.o +COBJS-y += timer.o + +SRCS := $(SOBJS-y:.o=.S) $(COBJS-y:.o=.c) +OBJS := $(addprefix $(obj),$(SOBJS-y) $(COBJS-y)) + +$(LIB): $(obj).depend $(OBJS) + $(call cmd_link_o_target, $(OBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |