diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-03-25 23:40:36 +0000 |
---|---|---|
committer | <ralf@linux-mips.org> | 1997-03-25 23:40:36 +0000 |
commit | 7206675c40394c78a90e74812bbdbf8cf3cca1be (patch) | |
tree | 251895cf5a0008e2b4ce438cb01ad4d55fb5b97b /arch/mips/kernel/Makefile | |
parent | beb116954b9b7f3bb56412b2494b562f02b864b1 (diff) |
Import of Linux/MIPS 2.1.14.2
Diffstat (limited to 'arch/mips/kernel/Makefile')
-rw-r--r-- | arch/mips/kernel/Makefile | 41 |
1 files changed, 37 insertions, 4 deletions
diff --git a/arch/mips/kernel/Makefile b/arch/mips/kernel/Makefile index b76c723b2..e537ac73e 100644 --- a/arch/mips/kernel/Makefile +++ b/arch/mips/kernel/Makefile @@ -14,9 +14,24 @@ all: kernel.o head.o EXTRA_ASFLAGS = -mips3 -mcpu=r4000 O_TARGET := kernel.o -O_OBJS := branch.o process.o signal.o entry.o traps.o irq.o ptrace.o vm86.o \ - ioport.o setup.o syscall.o sysmips.o time.o bios32.o ipc.o ksyms.o \ - unaligned.o tags.o +O_OBJS := branch.o process.o signal.o entry.o traps.o ptrace.o vm86.o \ + ioport.o setup.o syscall.o sysmips.o bios32.o ipc.o ksyms.o \ + r4k_switch.o r4k_misc.o r4k_scall.o r4k_fpu.o r2300_switch.o \ + r2300_misc.o r2300_scall.o r2300_fpu.o r6000_fpu.o unaligned.o + +# +# SGI's have very different interrupt/timer hardware. +# +ifndef CONFIG_SGI +O_OBJS += irq.o time.o +endif + +# +# Do we want to be able to execute IRIX elf binaries? +# +ifdef CONFIG_BINFMT_IRIX +O_OBJS += irixelf.o irixioctl.o irixsig.o sysirix.o +endif # # Kernel debugging @@ -43,9 +58,27 @@ O_OBJS := $(sort $(O_OBJS)) all: kernel.o head.o entry.o: entry.S -exception.o: exception.S + head.o: head.S +#r4k_switch.o: r4k_switch.S +# +#r4k_misc.o: r4k_misc.S +# +#r4k_scall.o: r4k_scall.S +# +#r4k_fpu.o: r4k_fpu.S +# +#r2300_switch.o: r2300_switch.S +# +#r2300_misc.o: r2300_misc.S +# +#r2300_scall.o: r2300_scall.S +# +#r2300_fpu.o: r2300_fpu.S +# +#r6000_fpu.o: r6000_fpu.S + clean: include $(TOPDIR)/Rules.make |