You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
ARCH = $(shell uname -m)
|
|
|
|
ifneq ("$(ARCH)", "ppc64")
|
|
|
|
ifneq ("$(ARCH)", "ppc64le")
|
|
|
|
CROSS_COMPILE ?= powerpc64le-linux-gnu-
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
CC = $(CROSS_COMPILE)gcc
|
|
|
|
LD = $(CROSS_COMPILE)ld
|
|
|
|
OBJCOPY = $(CROSS_COMPILE)objcopy
|
|
|
|
|
|
|
|
CFLAGS = -Os -g -Wall -std=c99 -msoft-float -mno-string -mno-multiple -mno-vsx -mno-altivec -mlittle-endian -fno-stack-protector -mstrict-align -ffreestanding -fdata-sections -ffunction-sections -I ../../include
|
|
|
|
ASFLAGS = $(CFLAGS)
|
|
|
|
LDFLAGS = -T powerpc.lds
|
|
|
|
|
|
|
|
all: $(TEST).hex
|
|
|
|
|
|
|
|
console.o: ../../lib/console.c
|
|
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
|
|
|
|
$(TEST).elf: $(TEST).o head.o console.o
|
|
|
|
$(LD) $(LDFLAGS) -o $(TEST).elf $(TEST).o head.o console.o
|
|
|
|
|
|
|
|
$(TEST).bin: $(TEST).elf
|
|
|
|
$(OBJCOPY) -O binary $(TEST).elf $(TEST).bin
|
|
|
|
|
|
|
|
$(TEST).hex: $(TEST).bin
|
|
|
|
../../scripts/bin2hex.py $(TEST).bin > $(TEST).hex
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@rm -f *.o $(TEST).elf $(TEST).bin $(TEST).hex
|