2018-04-07 22:43:54 +01: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
|
|
|
|
|
2018-04-08 04:44:32 +01:00
|
|
|
name := fusee-secondary
|
2018-04-07 22:43:54 +01:00
|
|
|
|
|
|
|
dir_source := src
|
|
|
|
dir_build := build
|
2018-05-15 01:45:31 +01:00
|
|
|
dir_exosphere := ../../exosphere
|
|
|
|
dir_thermosphere := ../../thermosphere
|
|
|
|
dir_stratosphere := ../../stratosphere
|
2018-04-07 22:43:54 +01:00
|
|
|
dir_out := out
|
|
|
|
|
2018-05-05 17:35:00 +01:00
|
|
|
ARCH := -march=armv4t -mtune=arm7tdmi -marm
|
2018-04-07 22:43:54 +01:00
|
|
|
|
|
|
|
ASFLAGS := -g $(ARCH)
|
|
|
|
|
|
|
|
# For debug builds, replace -O2 by -Og and comment -fomit-frame-pointer out
|
|
|
|
CFLAGS = \
|
|
|
|
$(ARCH) \
|
|
|
|
-g \
|
|
|
|
-O2 \
|
|
|
|
-fomit-frame-pointer \
|
|
|
|
-ffunction-sections \
|
|
|
|
-fdata-sections \
|
|
|
|
-std=gnu11 \
|
|
|
|
-Werror \
|
2018-05-04 18:47:05 +01:00
|
|
|
-Wall \
|
2018-05-07 22:32:45 +01:00
|
|
|
-fstrict-volatile-bitfields \
|
|
|
|
-DFUSEE_STAGE2_SRC
|
2018-04-07 22:43:54 +01:00
|
|
|
|
|
|
|
LDFLAGS = -specs=linker.specs -g $(ARCH)
|
|
|
|
|
2018-05-15 01:45:31 +01:00
|
|
|
bundled = $(dir_exosphere)/out/exosphere.bin $(dir_thermosphere)/out/thermosphere.bin \
|
|
|
|
$(dir_stratosphere)/loader/loader.kip $(dir_stratosphere)/pm/pm.kip \
|
2018-05-15 18:47:10 +01:00
|
|
|
$(dir_stratosphere)/sm/sm.kip $(dir_stratosphere)/boot/boot_100.kip $(dir_stratosphere)/boot/boot_200.kip
|
2018-05-15 01:45:31 +01:00
|
|
|
|
2018-04-07 22:43:54 +01:00
|
|
|
objects = $(patsubst $(dir_source)/%.s, $(dir_build)/%.o, \
|
|
|
|
$(patsubst $(dir_source)/%.c, $(dir_build)/%.o, \
|
2018-05-15 01:45:31 +01:00
|
|
|
$(call rwildcard, $(dir_source), *.s *.c))) \
|
|
|
|
$(dir_build)/bundled.o
|
2018-04-07 22:43:54 +01:00
|
|
|
|
|
|
|
define bin2o
|
|
|
|
bin2s $< | $(AS) -o $(@)
|
|
|
|
endef
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
all: $(dir_out)/$(name).bin
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
@rm -rf $(dir_build)
|
|
|
|
@rm -rf $(dir_out)
|
|
|
|
|
|
|
|
$(dir_out)/$(name).bin: $(dir_build)/$(name).elf
|
|
|
|
@mkdir -p "$(@D)"
|
|
|
|
$(OBJCOPY) -S -O binary $< $@
|
|
|
|
|
|
|
|
$(dir_build)/$(name).elf: $(objects)
|
|
|
|
$(LINK.o) $(OUTPUT_OPTION) $^
|
|
|
|
|
2018-05-15 01:45:31 +01:00
|
|
|
$(dir_build)/bundled.o: $(bundled)
|
|
|
|
@bin2s $^ | $(AS) -o $(@)
|
2018-04-07 22:43:54 +01:00
|
|
|
|
|
|
|
$(dir_build)/%.o: $(dir_source)/%.c
|
|
|
|
@mkdir -p "$(@D)"
|
|
|
|
$(COMPILE.c) $(OUTPUT_OPTION) $<
|
|
|
|
|
|
|
|
$(dir_build)/%.o: $(dir_source)/%.s
|
|
|
|
@mkdir -p "$(@D)"
|
|
|
|
$(COMPILE.c) -x assembler-with-cpp $(OUTPUT_OPTION) $<
|