Rev 52 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | jermar | 1 | # decstation-ultrix target has been obsoleted in recent gcc compilers (3.1) and removed in (3.3) |
2 | MIPS_TARGET=decstation-ultrix |
||
3 | |||
4 | MIPS_CC_DIR=/usr/local/mips/bin |
||
5 | MIPS_BINUTILS_DIR=/usr/local/mips/bin |
||
6 | |||
7 | CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc |
||
8 | AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as |
||
9 | LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld |
||
10 | |||
11 | ASFLAGS=-EL -mips3 |
||
12 | |||
13 | DEFS=-DARCH=$(ARCH) |
||
14 | CPPFLAGS=$(DEFS) -nostdinc -I../include |
||
15 | CFLAGS=$(CPPFLAGS) -EL -mips2 -G 0 -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O2 |
||
16 | LFLAGS=-EL -mips2 -M -no-check-sections -T ../arch/mips/_link.ld |
||
17 | |||
18 | arch_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 |