12345678910111213 |
- ifeq ($(strip $(DEVKITPPC)),)
- $(error "Set DEVKITPPC in your environment.")
- endif
- PREFIX = $(DEVKITPPC)/bin/powerpc-eabi-
- CFLAGS = -mcpu=750 -mpaired -m32 -mhard-float -mno-eabi -mno-sdata
- CFLAGS += -ffreestanding -ffunction-sections -fdata-sections
- CFLAGS += -Wall -Wextra -O2
- ASFLAGS =
- LDFLAGS = -mcpu=750 -m32 -n -nostartfiles -nodefaultlibs -Wl,-gc-sections
|