Rev 52 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1 | jermar | 1 | MIPS_CC_DIR=/usr/local/powerpc/bin |
2 | CC=$(MIPS_CC_DIR)/powerpc-linux-gcc |
||
3 | AS=$(MIPS_CC_DIR)/powerpc-linux-as |
||
4 | LD=$(MIPS_CC_DIR)/powerpc-linux-ld |
||
5 | |||
6 | ASFLAGS= |
||
7 | |||
8 | DEFS=-DARCH=$(ARCH) |
||
9 | CPPFLAGS=$(DEFS) -nostdinc -I../include |
||
10 | CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O2 |
||
11 | LFLAGS=-M -no-check-sections -T ../arch/mips/_link.ld |
||
12 | |||
13 | arch_sources= \ |
||
14 | arch/powerpc.c |