This repository has been archived on 2022-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
Luma3DS-3GX/injector/Makefile

52 lines
1.4 KiB
Makefile
Raw Normal View History

2016-04-19 20:51:00 +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)/3ds_rules
2016-04-19 20:51:00 +02:00
CC := arm-none-eabi-gcc
AS := arm-none-eabi-as
LD := arm-none-eabi-ld
OC := arm-none-eabi-objcopy
2016-04-19 20:51:00 +02:00
name := $(shell basename $(CURDIR))
2016-04-19 20:51:00 +02:00
dir_source := source
dir_build := build
2016-04-19 20:51:00 +02:00
LIBS := -lctru
LIBDIRS := $(CTRULIB)
2016-04-19 20:51:00 +02:00
LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
2016-04-19 20:51:00 +02:00
INCLUDE := $(foreach dir,$(LIBDIRS),-I$(dir)/include)
2016-04-19 20:51:00 +02:00
ARCH := -mcpu=mpcore -mfloat-abi=hard -mtp=soft
CFLAGS := -Wall -Wextra -MMD -MP -marm $(ARCH) -fno-builtin -std=c11 -O2 -flto -ffast-math -mword-relocations \
-ffunction-sections -fdata-sections $(INCLUDE) -DARM11 -D_3DS
LDFLAGS := -Xlinker --defsym="__start__=0x14000000" -specs=3dsx.specs $(ARCH)
2016-04-19 20:51:00 +02:00
objects = $(patsubst $(dir_source)/%.c, $(dir_build)/%.o, \
$(call rwildcard, $(dir_source), *.c))
2016-04-19 20:51:00 +02:00
.PHONY: all
all: $(name).cxi
2016-04-19 20:51:00 +02:00
.PHONY: clean
clean:
2016-04-19 20:51:00 +02:00
@rm -rf $(dir_build)
2016-04-19 20:51:00 +02:00
$(name).cxi: $(dir_build)/$(name).elf
@makerom -f ncch -rsf loader.rsf -nocodepadding -o $@ -elf $<
2016-04-19 20:51:00 +02:00
$(dir_build)/$(name).elf: $(objects)
$(LINK.o) $(OUTPUT_OPTION) $^ $(LIBPATHS) $(LIBS)
2016-04-19 20:51:00 +02:00
$(dir_build)/memory.o : CFLAGS += -O3
2016-04-19 20:51:00 +02:00
$(dir_build)/%.o: $(dir_source)/%.c
@mkdir -p "$(@D)"
$(COMPILE.c) $(OUTPUT_OPTION) $<
include $(call rwildcard, $(dir_build), *.d)