diff options
author | Andreas Engel <andreas.engel@ericsson.com> | 2008-01-14 09:06:52 +0000 |
---|---|---|
committer | Peter Pearse <peter.pearse@arm.com> | 2008-02-14 09:38:21 +0000 |
commit | 6d0943a6be99977d6d853d51749e9963d68eb192 (patch) | |
tree | 2c32a11b09ccd605e425de697f44bfa5003e719c /lib_arm/Makefile | |
parent | fe891ecf4d187e9d11dde869ed4623af52b54451 (diff) | |
download | u-boot-imx-6d0943a6be99977d6d853d51749e9963d68eb192.zip u-boot-imx-6d0943a6be99977d6d853d51749e9963d68eb192.tar.gz u-boot-imx-6d0943a6be99977d6d853d51749e9963d68eb192.tar.bz2 |
ARM: cleanup duplicated exception handlingcode
Move duplicated exception handling code into lib_arm.
Signed-off-by: Andreas Engel <andreas.engel@ericsson.com>
Diffstat (limited to 'lib_arm/Makefile')
-rw-r--r-- | lib_arm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_arm/Makefile b/lib_arm/Makefile index 037c475..bfd5b0e 100644 --- a/lib_arm/Makefile +++ b/lib_arm/Makefile @@ -28,7 +28,7 @@ LIB = $(obj)lib$(ARCH).a SOBJS = _ashldi3.o _ashrdi3.o _divsi3.o _modsi3.o _udivsi3.o _umodsi3.o COBJS = armlinux.o board.o \ - cache.o div0.o + cache.o div0.o interrupts.o SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |