Subversion Repositories HelenOS-historic

Rev

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

Rev 60 Rev 76
Line 5... Line 5...
5
 
5
 
6
CC=$(IA-64_CC_DIR)/$(IA-64_TARGET)-gcc
6
CC=$(IA-64_CC_DIR)/$(IA-64_TARGET)-gcc
7
AS=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-as
7
AS=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-as
8
LD=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-ld
8
LD=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-ld
9
 
9
 
10
ASFLAGS=-EL
10
ASFLAGS=-mconstant-gp
11
 
11
 
12
DEFS=-DARCH=$(ARCH)
12
DEFS=-DARCH=$(ARCH)
13
CPPFLAGS=$(DEFS) -nostdinc -I../include
13
CPPFLAGS=$(DEFS) -nostdinc -I../include
14
CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O3
14
CFLAGS=$(CPPFLAGS) -mconstant-gp -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O3
15
LFLAGS=-EL -M -no-check-sections -T ../arch/ia64/_link.ld
15
LFLAGS=-EL -M -T ../arch/ia64/_link.ld
16
 
16
 
17
arch_sources= \
17
arch_sources= \
18
	arch/start.S \
18
	arch/start.S \
19
	arch/asm.S \
19
	arch/asm.S \
20
	arch/fake.s \
20
	arch/fake.s \
21
	arch/putchar.c \
21
	arch/putchar.c \
22
	arch/ia64.c \
22
	arch/ia64.c \
23
	arch/fpu_context.c \
23
	arch/fpu_context.c \
24
	arch/context.S 
24
	arch/context.S 
25
	
-
 
26
 
-