diff options
author | TsiChungLiew <Tsi-Chung.Liew@freescale.com> | 2007-07-05 23:10:40 -0500 |
---|---|---|
committer | John Rigby <jrigby@freescale.com> | 2007-07-10 14:29:09 -0600 |
commit | 2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97 (patch) | |
tree | 623b7791338652474fa7d506852b7734232143ef /cpu/mcf532x/Makefile | |
parent | ddd104f1ed655eda50c06ba636237a83ed943f34 (diff) | |
download | u-boot-imx-2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97.zip u-boot-imx-2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97.tar.gz u-boot-imx-2e3f25ae9082daa9f5d181db45dfbc2e52ce0f97.tar.bz2 |
Create interrupts.c and modify Makefile
interrupt_init() and dtimer_intr_setup() are placed in interrupts.c. Added interrupts.o to Makefile
Signed-off-by: TsiChungLiew <Tsi-Chung.Liew@freescale.com>
Diffstat (limited to 'cpu/mcf532x/Makefile')
-rw-r--r-- | cpu/mcf532x/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpu/mcf532x/Makefile b/cpu/mcf532x/Makefile index 452848d..6790d90 100644 --- a/cpu/mcf532x/Makefile +++ b/cpu/mcf532x/Makefile @@ -28,7 +28,7 @@ include $(TOPDIR)/config.mk LIB = lib$(CPU).a START = -COBJS = cpu.o speed.o cpu_init.o +COBJS = cpu.o speed.o cpu_init.o interrupts.o SRCS := $(START:.o=.S) $(SOBJS:.o=.S) $(COBJS:.o=.c) OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS)) |