Subversion Repositories HelenOS-historic

Rev

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

Rev 59 Rev 130
Line 1... Line -...
1
# decstation-ultrix target has been obsoleted in recent gcc compilers (3.1) and removed in (3.3)
-
 
2
MIPS_TARGET=decstation-ultrix
1
MIPS_TARGET=mipsel-linux-gnu
3
 
2
 
4
MIPS_CC_DIR=/usr/local/mips/bin
3
MIPS_CC_DIR=/usr/local/mipsel/bin
5
MIPS_BINUTILS_DIR=/usr/local/mips/bin
4
MIPS_BINUTILS_DIR=/usr/local/mipsel/bin
6
 
5
 
7
CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc
6
CC=$(MIPS_CC_DIR)/$(MIPS_TARGET)-gcc
8
AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
7
AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
9
LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
8
LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
10
 
9
 
11
ASFLAGS=-EL -mips3
10
ASFLAGS=-mips3
12
 
11
 
13
DEFS=-DARCH=$(ARCH)
12
DEFS=-DARCH=$(ARCH)
14
CPPFLAGS=$(DEFS) -nostdinc -I../include
13
CPPFLAGS=$(DEFS) -nostdinc -mxgot -I../include
15
CFLAGS=$(CPPFLAGS) -EL -mips2 -G 0 -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O2
14
CFLAGS=$(CPPFLAGS) -mips2 -G 0 -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O2
16
LFLAGS=-EL -mips2 -M -no-check-sections -T ../arch/mips/_link.ld
15
LFLAGS=-mips2 -M -no-check-sections -T ../arch/mips/_link.ld
17
 
16
 
18
arch_sources= \
17
arch_sources= \
19
	arch/start.S \
18
	arch/start.S \
20
	arch/context.S \
19
	arch/context.S \
21
	arch/panic.s \
20
	arch/panic.s \