diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2009-11-24 20:04:18 +1100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-12-05 01:04:18 +0100 |
commit | 564a9984bdbf86a02cf4f0d848933a9fff4a1d18 (patch) | |
tree | 09f093703b988d3a229294649429672452a5a891 /cpu/i386/Makefile | |
parent | 27f13075a659da046372dfe249d808f2f6ddb432 (diff) | |
download | u-boot-imx-564a9984bdbf86a02cf4f0d848933a9fff4a1d18.zip u-boot-imx-564a9984bdbf86a02cf4f0d848933a9fff4a1d18.tar.gz u-boot-imx-564a9984bdbf86a02cf4f0d848933a9fff4a1d18.tar.bz2 |
i386: Rearrange Interupt Handling
In preperation for full relocation
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'cpu/i386/Makefile')
-rw-r--r-- | cpu/i386/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/i386/Makefile b/cpu/i386/Makefile index e98bd3d..c658c6e 100644 --- a/cpu/i386/Makefile +++ b/cpu/i386/Makefile @@ -29,7 +29,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(CPU).a START = start.o start16.o resetvec.o -COBJS = serial.o interrupts.o exceptions.o cpu.o +COBJS = serial.o interrupts.o cpu.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |