GodMode9/screeninit/Makefile

47 lines
1.3 KiB
Makefile
Raw Normal View History

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 \
-std=c11 -O2 -flto -ffast-math -Wno-main $(INCLUDE)
LDFLAGS := -nostdlib -nostartfiles
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 $@ $<