mirror of
https://github.com/joel16/3DSident.git
synced 2025-02-17 01:39:31 +00:00
231 lines
8.2 KiB
Makefile
231 lines
8.2 KiB
Makefile
#---------------------------------------------------------------------------------
|
|
.SUFFIXES:
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifeq ($(strip $(DEVKITARM)),)
|
|
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
|
|
endif
|
|
|
|
TOPDIR ?= $(CURDIR)
|
|
include $(DEVKITARM)/3ds_rules
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# TARGET is the name of the output
|
|
# BUILD is the directory where object files & intermediate files will be placed
|
|
# SOURCES is a list of directories containing source code
|
|
# DATA is a list of directories containing data files
|
|
# INCLUDES is a list of directories containing header files
|
|
#
|
|
# NO_SMDH: if set to anything, no SMDH file is generated.
|
|
# ROMFS is the directory which contains the RomFS, relative to the Makefile (Optional)
|
|
# APP_TITLE is the name of the app stored in the SMDH file (Optional)
|
|
# APP_DESCRIPTION is the description of the app stored in the SMDH file (Optional)
|
|
# APP_AUTHOR is the author of the app stored in the SMDH file (Optional)
|
|
# ICON is the filename of the icon (.png), relative to the project folder.
|
|
# If not set, it attempts to use one of the following (in this order):
|
|
# - <Project name>.png
|
|
# - icon.png
|
|
# - <libctru folder>/default_icon.png
|
|
#---------------------------------------------------------------------------------
|
|
APP_TITLE := 3DSident
|
|
APP_DESCRIPTION := Identity tool for the Nintendo 3DS.
|
|
APP_AUTHOR := Joel16
|
|
|
|
TARGET := $(subst $e ,_,$(notdir $(APP_TITLE)))
|
|
OUTDIR := out
|
|
BUILD := build
|
|
RESOURCES := resources
|
|
SOURCES := source source/graphics source/services
|
|
DATA := data
|
|
INCLUDES := include include/graphics include/services
|
|
|
|
ICON := $(RESOURCES)/icon.png
|
|
BANNER := $(RESOURCES)/banner.png
|
|
JINGLE := $(RESOURCES)/banner.wav
|
|
ICON_FLAGS := nosavebackups,visible
|
|
|
|
# CIA
|
|
APP_PRODUCT_CODE := CTR-C-3DSI
|
|
APP_UNIQUE_ID := 0x16000
|
|
RSF_FILE := resources/cia.rsf
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# options for code generation
|
|
#---------------------------------------------------------------------------------
|
|
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -mtp=soft
|
|
|
|
CFLAGS := -g -Werror -O2 -mword-relocations \
|
|
-fomit-frame-pointer -ffunction-sections \
|
|
$(ARCH)
|
|
|
|
CFLAGS += $(INCLUDE) -DARM11 -D_3DS
|
|
|
|
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11
|
|
|
|
ASFLAGS := -g $(ARCH)
|
|
LDFLAGS = -specs=3dsx.specs -g $(ARCH) -Wl,-Map,$(notdir $*.map)
|
|
|
|
LIBS := -lctru -lm -lpng16 -lz
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# list of directories containing libraries, this must be the top level containing
|
|
# include and lib
|
|
#---------------------------------------------------------------------------------
|
|
LIBDIRS := $(CTRULIB) $(PORTLIBS)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# no real need to edit anything past this point unless you need to add additional
|
|
# rules for different file extensions
|
|
#---------------------------------------------------------------------------------
|
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export OUTPUT := $(CURDIR)/$(OUTDIR)/$(TARGET)
|
|
export TOPDIR := $(CURDIR)
|
|
|
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
|
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
|
|
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
PICAFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.v.pica)))
|
|
SHLISTFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.shlist)))
|
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# use CXX for linking C++ projects, CC for standard C
|
|
#---------------------------------------------------------------------------------
|
|
ifeq ($(strip $(CPPFILES)),)
|
|
#---------------------------------------------------------------------------------
|
|
export LD := $(CC)
|
|
#---------------------------------------------------------------------------------
|
|
else
|
|
#---------------------------------------------------------------------------------
|
|
export LD := $(CXX)
|
|
#---------------------------------------------------------------------------------
|
|
endif
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export OFILES := $(addsuffix .o,$(BINFILES)) \
|
|
$(PICAFILES:.v.pica=.shbin.o) $(SHLISTFILES:.shlist=.shbin.o) \
|
|
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
|
|
|
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
-I$(CURDIR)/$(BUILD)
|
|
|
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
|
|
|
|
ifeq ($(strip $(ICON)),)
|
|
icons := $(wildcard *.png)
|
|
ifneq (,$(findstring $(TARGET).png,$(icons)))
|
|
export APP_ICON := $(TOPDIR)/$(TARGET).png
|
|
else
|
|
ifneq (,$(findstring icon.png,$(icons)))
|
|
export APP_ICON := $(TOPDIR)/icon.png
|
|
endif
|
|
endif
|
|
else
|
|
export APP_ICON := $(TOPDIR)/$(ICON)
|
|
endif
|
|
|
|
ifeq ($(strip $(NO_SMDH)),)
|
|
export _3DSXFLAGS += --smdh=$(OUTPUT).smdh
|
|
endif
|
|
|
|
ifneq ($(ROMFS),)
|
|
export _3DSXFLAGS += --romfs=$(CURDIR)/$(ROMFS)
|
|
endif
|
|
|
|
.PHONY: $(BUILD) clean all
|
|
|
|
#---------------------------------------------------------------------------------
|
|
all: 3dsx cia
|
|
|
|
3dsx: $(BUILD) $(OUTPUT).3dsx
|
|
|
|
cia : $(BUILD) $(OUTPUT).cia
|
|
|
|
citra: export CITRA_MODE = 1
|
|
citra: 3dsx
|
|
#---------------------------------------------------------------------------------
|
|
$(BUILD):
|
|
@mkdir -p $(OUTDIR)
|
|
@[ -d "$@" ] || mkdir -p "$@"
|
|
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
|
|
|
|
#---------------------------------------------------------------------------------
|
|
clean:
|
|
@echo clean ...
|
|
@rm -fr $(BUILD) $(OUTDIR)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
ifeq ($(strip $(NO_SMDH)),)
|
|
$(OUTPUT).3dsx : $(OUTPUT).elf $(OUTPUT).smdh
|
|
else
|
|
$(OUTPUT).3dsx : $(OUTPUT).elf
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|
|
MAKEROM ?= makerom
|
|
|
|
MAKEROM_ARGS := -elf "$(OUTPUT).elf" -rsf "$(RSF_FILE)" -banner "$(BUILD)/banner.bnr" -icon "$(BUILD)/icon.icn" -DAPP_TITLE="$(APP_TITLE)" -DAPP_PRODUCT_CODE="$(APP_PRODUCT_CODE)" -DAPP_UNIQUE_ID="$(APP_UNIQUE_ID)"
|
|
|
|
ifneq ($(strip $(LOGO)),)
|
|
MAKEROM_ARGS += -logo "$(LOGO)"
|
|
endif
|
|
|
|
ifeq ($(strip $(ROMFS)),)
|
|
$(OUTPUT).cia: $(OUTPUT).elf $(BUILD)/banner.bnr $(BUILD)/icon.icn
|
|
$(MAKEROM) -f cia -o "$@" -target t -exefslogo $(MAKEROM_ARGS)
|
|
else
|
|
$(OUTPUT).cia: $(OUTPUT).elf $(BUILD)/banner.bnr $(BUILD)/icon.icn
|
|
$(MAKEROM) -f cia -o "$@" -target t -exefslogo $(MAKEROM_ARGS)
|
|
endif
|
|
|
|
|
|
BANNERTOOL ?= bannertool
|
|
|
|
ifeq ($(suffix $(BANNER)),.cgfx)
|
|
BANNER_ARG := -ci
|
|
else
|
|
BANNER_ARG := -i
|
|
endif
|
|
|
|
ifeq ($(suffix $(JINGLE)),.cwav)
|
|
JINGLE_ARG := -ca
|
|
else
|
|
JINGLE_ARG := -a
|
|
endif
|
|
|
|
$(BUILD)/banner.bnr : $(BANNER) $(JINGLE)
|
|
$(BANNERTOOL) makebanner $(BANNER_ARG) "$(BANNER)" $(JINGLE_ARG) "$(JINGLE)" -o "$@"
|
|
|
|
$(BUILD)/icon.icn : $(APP_ICON)
|
|
$(BANNERTOOL) makesmdh -s "$(APP_TITLE)" -l "$(APP_DESCRIPTION)" -p "$(APP_AUTHOR)" -i "$(APP_ICON)" -f "$(ICON_FLAGS)" -o "$@"
|
|
|
|
#---------------------------------------------------------------------------------
|
|
else
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# main targets
|
|
#---------------------------------------------------------------------------------
|
|
|
|
$(OUTPUT).elf : $(OFILES)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# you need a rule like this for each extension you use as binary data
|
|
#---------------------------------------------------------------------------------
|
|
%.bin.o : %.bin
|
|
#---------------------------------------------------------------------------------
|
|
@echo $(notdir $<)
|
|
@$(bin2o)
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
endif
|
|
#---------------------------------------------------------------------------------------
|