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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since babcb148 was f761f1eb, checked in by Jakub Jermar <jakub@…>, 20 years ago

Initial import

  • Property mode set to 100644
File size: 833 bytes
Line 
1# decstation-ultrix target has been obsoleted in recent gcc compilers (3.1) and removed in (3.3)
2MIPS_TARGET=decstation-ultrix
3
4MIPS_CC_DIR=/usr/local/mips/bin
5MIPS_BINUTILS_DIR=/usr/local/mips/bin
6
7CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc
8AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
9LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
10
11ASFLAGS=-EL -mips3
12
13DEFS=-DARCH=$(ARCH)
14CPPFLAGS=$(DEFS) -nostdinc -I../include
15CFLAGS=$(CPPFLAGS) -EL -mips2 -G 0 -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O2
16LFLAGS=-EL -mips2 -M -no-check-sections -T ../arch/mips/_link.ld
17
18arch_sources= \
19 arch/start.S \
20 arch/context.S \
21 arch/panic.s \
22 arch/mips.c \
23 arch/fake.s \
24 arch/putchar.c \
25 arch/asm.s \
26 arch/exception.c \
27 arch/interrupt.c \
28 arch/cache.c \
29 arch/lib/memstr.c \
30 arch/cpu/cpu.c \
31 arch/mm/frame.c \
32 arch/mm/page.c \
33 arch/mm/tlb.c
Note: See TracBrowser for help on using the repository browser.