Subversion Repositories HelenOS

Rev

Rev 157 | Rev 161 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
157 decky 1
PPC_CC_DIR=/usr/local/ppc/bin
2
CC=$(PPC_CC_DIR)/ppc-linux-gnu-gcc
3
AS=$(PPC_CC_DIR)/ppc-linux-gnu-as
4
LD=$(PPC_CC_DIR)/ppc-linux-gnu-ld
1 jermar 5
 
6
ASFLAGS=
7
 
8
DEFS=-DARCH=$(ARCH)
9
CPPFLAGS=$(DEFS) -nostdinc -I../include
10
CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -Wmissing-prototypes -Werror -O2
157 decky 11
LFLAGS=-M -no-check-sections -T ../arch/ppc/_link.ld
1 jermar 12
 
13
arch_sources= \
52 vana 14
	arch/powerpc.c \
160 jermar 15
	arch/fpu_context.c \
16
	arch/fake.s \
17
	arch/start.S