- Start Restructuring Project - Add Makefile for Testbuilds - Optimize Lithium as much as possible - Remove Render2 to get wasted time - Optimize UI7 for LRS
152 lines
5.4 KiB
Makefile
152 lines
5.4 KiB
Makefile
#---------------------------------------------------------------------------------
|
|
.SUFFIXES:
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifeq ($(strip $(DEVKITARM)),)
|
|
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
|
|
endif
|
|
|
|
include $(DEVKITARM)/3ds_rules
|
|
|
|
export PD_MAJOR := 1
|
|
export PD_MINOR := 0
|
|
export PD_PATCH := 0
|
|
|
|
VERSION := $(PD_MAJOR).$(PD_MINOR).$(PD_PATCH)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# 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
|
|
#---------------------------------------------------------------------------------
|
|
TARGET := palladium
|
|
SOURCES := source source/base
|
|
DATA := data
|
|
INCLUDES := include
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# options for code generation
|
|
#---------------------------------------------------------------------------------
|
|
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard -mtp=soft
|
|
|
|
CFLAGS := -g -Wall -Wno-psabi -Werror -mword-relocations \
|
|
-ffunction-sections -fdata-sections \
|
|
-fomit-frame-pointer -ffast-math \
|
|
$(ARCH) $(BUILD_CFLAGS)
|
|
|
|
CFLAGS += $(INCLUDE) -D__3DS__ -D_GNU_SOURCE=1
|
|
|
|
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions -std=c++20
|
|
|
|
ASFLAGS := -g $(ARCH) $(DEFINES)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# list of directories containing libraries, this must be the top level containing
|
|
# include and lib
|
|
#---------------------------------------------------------------------------------
|
|
LIBDIRS := $(PORTLIBS) $(CTRULIB)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# 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 VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
|
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
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)) \
|
|
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
|
|
|
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
-I.
|
|
|
|
.PHONY: clean all doc
|
|
|
|
#---------------------------------------------------------------------------------
|
|
all: lib/libpalladium.a lib/libpalladiumd.a
|
|
|
|
dist-bin: all
|
|
@tar --exclude=*~ -cjf palladium-$(VERSION).tar.bz2 include lib
|
|
|
|
dist-src:
|
|
@tar --exclude=*~ -cjf palladium-src-$(VERSION).tar.bz2 include source Makefile
|
|
|
|
dist: dist-src dist-bin
|
|
|
|
install: dist-bin
|
|
mkdir -p $(DESTDIR)$(DEVKITPRO)/libctru
|
|
bzip2 -cd palladium-$(VERSION).tar.bz2 | tar -xf - -C $(DESTDIR)$(DEVKITPRO)/libctru
|
|
|
|
lib:
|
|
@[ -d $@ ] || mkdir -p $@
|
|
|
|
release:
|
|
@[ -d $@ ] || mkdir -p $@
|
|
|
|
debug:
|
|
@[ -d $@ ] || mkdir -p $@
|
|
|
|
lib/libpalladium.a : lib release $(SOURCES) $(INCLUDES)
|
|
@$(MAKE) BUILD=release OUTPUT=$(CURDIR)/$@ \
|
|
BUILD_CFLAGS="-DNDEBUG=1 -O3 -fomit-frame-pointer -fno-math-errno" \
|
|
DEPSDIR=$(CURDIR)/release \
|
|
--no-print-directory -C release \
|
|
-f $(CURDIR)/Makefile
|
|
|
|
lib/libpalladiumd.a : lib debug $(SOURCES) $(INCLUDES)
|
|
@$(MAKE) BUILD=debug OUTPUT=$(CURDIR)/$@ \
|
|
BUILD_CFLAGS="-DDEBUG=1 -Og" \
|
|
DEPSDIR=$(CURDIR)/debug \
|
|
--no-print-directory -C debug \
|
|
-f $(CURDIR)/Makefile
|
|
|
|
#---------------------------------------------------------------------------------
|
|
clean:
|
|
@echo clean ...
|
|
@rm -fr release debug lib
|
|
|
|
#---------------------------------------------------------------------------------
|
|
else
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# main targets
|
|
#---------------------------------------------------------------------------------
|
|
$(OUTPUT) : $(OFILES)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%.bin.o : %.bin
|
|
#---------------------------------------------------------------------------------
|
|
@echo $(notdir $<)
|
|
@$(bin2o)
|
|
|
|
-include $(DEPENDS)
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
endif
|
|
#---------------------------------------------------------------------------------------
|