2017-07-26 21:39:30 +02:00
|
|
|
rwildcard = $(foreach d, $(wildcard $1*), $(filter $(subst *, %, $2), $d) $(call rwildcard, $d/, $2))
|
|
|
|
|
|
|
|
ifeq ($(strip $(DEVKITARM)),)
|
|
|
|
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(DEVKITARM)/base_tools
|
|
|
|
|
|
|
|
name := $(shell basename $(CURDIR))
|
|
|
|
|
|
|
|
dir_source := source
|
|
|
|
dir_build := build
|
|
|
|
dir_out := ../$(dir_build)
|
|
|
|
|
2017-08-08 23:04:17 -03:00
|
|
|
ARCH := -DARM11 -mcpu=mpcore -mfloat-abi=soft -marm -mno-thumb-interwork
|
|
|
|
INCLUDE := -I$(dir_source) -I../common
|
|
|
|
|
|
|
|
ASFLAGS := $(ARCH) -x assembler-with-cpp $(INCLUDE)
|
|
|
|
CFLAGS := $(ARCH) -Wall -Wextra -MMD -MP -fno-builtin \
|
2017-08-21 21:01:18 -03:00
|
|
|
-Wno-unused-function -Wno-unused-variable \
|
2017-08-08 23:04:17 -03:00
|
|
|
-std=c11 -O2 -flto -ffast-math -Wno-main $(INCLUDE)
|
2017-09-26 19:56:19 -03:00
|
|
|
LDFLAGS := -nostdlib -nostartfiles -Wl,-z,max-page-size=512
|
2017-07-26 21:39:30 +02:00
|
|
|
|
|
|
|
objects = $(patsubst $(dir_source)/%.s, $(dir_build)/%.o, \
|
|
|
|
$(patsubst $(dir_source)/%.c, $(dir_build)/%.o, \
|
|
|
|
$(call rwildcard, $(dir_source), *.s *.c)))
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: $(dir_out)/$(name).bin
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf $(dir_build)
|
|
|
|
|
|
|
|
$(dir_out)/$(name).bin: $(dir_out)/$(name).elf
|
|
|
|
$(OBJCOPY) -S -O binary $< $@
|
|
|
|
|
|
|
|
$(dir_out)/$(name).elf: $(objects)
|
|
|
|
$(LINK.o) -T linker.ld $(OUTPUT_OPTION) $^
|
|
|
|
|
|
|
|
$(dir_build)/%.o: $(dir_source)/%.c
|
|
|
|
@mkdir -p "$(@D)"
|
2017-08-08 23:04:17 -03:00
|
|
|
$(CC) -c $(CFLAGS) -o $@ $<
|
2017-07-26 21:39:30 +02:00
|
|
|
|
|
|
|
$(dir_build)/%.o: $(dir_source)/%.s
|
|
|
|
@mkdir -p "$(@D)"
|
2017-08-08 23:04:17 -03:00
|
|
|
$(CC) -c $(ASFLAGS) -o $@ $<
|