source: mainline/arch/mips/Makefile.inc@ c7bb8b05

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since c7bb8b05 was c7bb8b05, checked in by Josef Cejka <malyzelenyhnus@…>, 20 years ago

Created fmath as basic tool for IEEE 754 floating point numbers.
Added option $F for printf for printing "double" type.

  • Property mode set to 100644
File size: 797 bytes
Line 
1MIPS_TARGET=mipsel-linux-gnu
2
3MIPS_CC_DIR=/usr/local/mipsel/bin
4MIPS_BINUTILS_DIR=/usr/local/mipsel/bin
5
6CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc
7AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
8LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
9
10ASFLAGS=-mips3
11
12DEFS=-DARCH=$(ARCH)
13CPPFLAGS=$(DEFS) -mno-abicalls -nostdinc -I../include
14CFLAGS=$(CPPFLAGS) -mips2 -G 0 -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O2
15LFLAGS=-mips2 -M -no-check-sections -T ../arch/mips/_link.ld
16
17arch_sources= \
18 arch/start.S \
19 arch/context.S \
20 arch/panic.s \
21 arch/mips.c \
22 arch/dummy.s \
23 arch/putchar.c \
24 arch/asm.s \
25 arch/exception.c \
26 arch/interrupt.c \
27 arch/cache.c \
28 arch/cpu/cpu.c \
29 arch/mm/frame.c \
30 arch/mm/page.c \
31 arch/mm/tlb.c \
32 arch/fpu_context.c \
33 arch/fmath.c
Note: See TracBrowser for help on using the repository browser.