diff options
author | Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> | 2011-11-26 19:04:51 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-01-13 21:16:44 +0100 |
commit | 272f84bbdf10839cd2363396420a087af1f298f7 (patch) | |
tree | 3f66c4c088cdf93a54cdf5ce8961687d85744a2f /arch/openrisc/cpu/Makefile | |
parent | 3ddcaccda3824e1c7f7266d543e4c0eb3ea9851c (diff) | |
download | u-boot-imx-272f84bbdf10839cd2363396420a087af1f298f7.zip u-boot-imx-272f84bbdf10839cd2363396420a087af1f298f7.tar.gz u-boot-imx-272f84bbdf10839cd2363396420a087af1f298f7.tar.bz2 |
openrisc: Add cpu files
Signed-off-by: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
Diffstat (limited to 'arch/openrisc/cpu/Makefile')
-rw-r--r-- | arch/openrisc/cpu/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/arch/openrisc/cpu/Makefile b/arch/openrisc/cpu/Makefile new file mode 100644 index 0000000..b3b1a24 --- /dev/null +++ b/arch/openrisc/cpu/Makefile @@ -0,0 +1,47 @@ +# +# (C) Copyright 2011 +# Julius Baxter <julius@opencores.org> +# +# 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$(CPU).o + +START = start.o +COBJS-y = cache.o cpu.o exceptions.o interrupts.o + +SRCS := $(START:.o=.S) $(COBJS-y:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS-y)) +START := $(addprefix $(obj),$(START)) + +all: $(obj).depend $(START) $(LIB) + +$(LIB): $(OBJS) + $(call cmd_link_o_target, $(OBJS)) + +######################################################################### + +# defines $(obj).depend target +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |