Subversion Repositories HelenOS-historic

Rev

Rev 376 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 376 Rev 391
Line 8... Line 8...
8
OBJDUMP=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objdump
8
OBJDUMP=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objdump
9
OBJCOPY=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objcopy
9
OBJCOPY=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-objcopy
10
BFD_ARCH=mips
10
BFD_ARCH=mips
11
 
11
 
12
DEFS=-DARCH=$(ARCH) -DMACHINE=${MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS}
12
DEFS=-DARCH=$(ARCH) -DMACHINE=${MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS}
13
CFLAGS=$(DEFS) -mno-abicalls -G 0 -nostdlib -fno-builtin -O2  -fno-zero-initialized-in-bss 
13
CFLAGS=$(DEFS) -mno-abicalls -G 0 -nostdlib -fno-builtin -O2  -fno-zero-initialized-in-bss
14
LFLAGS=-M -N
14
LFLAGS=
15
BFD_ARCH=mips
15
BFD_ARCH=mips
16
 
16
 
17
# GCC 4.0.1 compiled for mipsEL has problems compiling in 
17
# GCC 4.0.1 compiled for mipsEL has problems compiling in 
18
# BigEndian mode with the swl/swr/lwl/lwr instructions.
18
# BigEndian mode with the swl/swr/lwl/lwr instructions.
19
# We have to compile it with mips-sgi-irix5 to get it right.
19
# We have to compile it with mips-sgi-irix5 to get it right.
Line 84... Line 84...
84
	src/arch/asm.S \
84
	src/arch/asm.S \
85
	src/arch/exception.c \
85
	src/arch/exception.c \
86
	src/arch/interrupt.c \
86
	src/arch/interrupt.c \
87
	src/arch/cache.c \
87
	src/arch/cache.c \
88
	src/arch/cpu/cpu.c \
88
	src/arch/cpu/cpu.c \
-
 
89
	src/arch/mm/asid.c \
89
	src/arch/mm/frame.c \
90
	src/arch/mm/frame.c \
90
	src/arch/mm/page.c \
91
	src/arch/mm/page.c \
91
	src/arch/mm/tlb.c \
92
	src/arch/mm/tlb.c \
-
 
93
	src/arch/mm/vm.c \
92
	src/arch/fpu_context.c \
94
	src/arch/fpu_context.c \
93
	src/arch/fmath.c \
95
	src/arch/fmath.c \
94
	src/arch/drivers/arc.c
96
	src/arch/drivers/arc.c