Subversion Repositories HelenOS-historic

Rev

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

Rev 161 Rev 162
Line -... Line 1...
-
 
1
PPC_TARGET=ppc-linux-gnu
-
 
2
 
1
PPC_CC_DIR=/usr/local/ppc/bin
3
PPC_CC_DIR=/usr/local/ppc/bin
-
 
4
PPC_BINUTILS_DIR=/usr/local/ppc/bin
-
 
5
 
2
CC=$(PPC_CC_DIR)/ppc-linux-gnu-gcc
6
CC=$(PPC_CC_DIR)/$(PPC_TARGET)-gcc
3
AS=$(PPC_CC_DIR)/ppc-linux-gnu-as
7
AS=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-as
4
LD=$(PPC_CC_DIR)/ppc-linux-gnu-ld
8
LD=$(PPC_BINUTILS_DIR)/$(PPC_TARGET)-ld
5
 
9
 
6
ASFLAGS=
10
ASFLAGS=
7
 
11
 
8
DEFS=-DARCH=$(ARCH)
12
DEFS=-DARCH=$(ARCH)
9
CPPFLAGS=$(DEFS) -nostdinc -I../include
13
CPPFLAGS=$(DEFS) -nostdinc -I../include
Line 12... Line 16...
12
 
16
 
13
arch_sources= \
17
arch_sources= \
14
	arch/powerpc.c \
18
	arch/powerpc.c \
15
	arch/fpu_context.c \
19
	arch/fpu_context.c \
16
	arch/dummy.s \
20
	arch/dummy.s \
17
	arch/start.S
21
	arch/start.S \
-
 
22
	arch/asm.s \
-
 
23
	arch/putchar.c \
-
 
24
	arch/mm/frame.c \
-
 
25
	arch/mm/page.c