2022-07-25 20:32:34 +00:00
i f n e q ( $( findstring MINGW ,$ ( shell uname ) ) , )
WINDOWS := 1
e n d i f
i f n e q ( $( findstring MSYS ,$ ( shell uname ) ) , )
WINDOWS := 1
e n d i f
2022-10-14 06:43:37 +00:00
i f e q ( $( findstring not found ,$ ( shell which nix ) ) , )
NIX := 1
e n d i f
2022-07-25 20:32:34 +00:00
# If 0, tells the console to chill out. (Quiets the make process.)
VERBOSE ?= 1
# If MAPGENFLAG set to 1, tells LDFLAGS to generate a mapfile, which makes linking take several minutes.
MAPGENFLAG ?= 1
i f e q ( $( VERBOSE ) , 0 )
QUIET := @
e n d i f
#-------------------------------------------------------------------------------
# Files
#-------------------------------------------------------------------------------
NAME := donut
VERSION ?= 0
# Overkill epilogue fixup strategy. Set to 1 if necessary.
EPILOGUE_PROCESS := 0
BUILD_DIR := build/$( NAME) .$( VERSION)
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
EPILOGUE_DIR := epilogue/$( NAME) .$( VERSION)
e n d i f
# Inputs
S_FILES := $( wildcard asm/*.s)
C_FILES := $( wildcard src/*.c)
CPP_FILES := $( wildcard src/*.cpp)
CPP_FILES += $( wildcard src/*.cp)
LDSCRIPT := $( BUILD_DIR) /ldscript.lcf
# Outputs
DOL := $( BUILD_DIR) /main.dol
ELF := $( DOL:.dol= .elf)
MAP := $( BUILD_DIR) /donut.MAP
i f e q ( $( MAPGENFLAG ) , 1 )
MAPGEN := -map $( MAP)
e n d i f
i n c l u d e o b j _ f i l e s . m k
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
i n c l u d e e _ f i l e s . m k
e n d i f
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
E_FILES := $( EPILOGUE_UNSCHEDULED)
e n d i f
#-------------------------------------------------------------------------------
# Tools
#-------------------------------------------------------------------------------
MWCC_VERSION := 4.3
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
MWCC_EPI_VERSION := 1.2.5
MWCC_EPI_EXE := mwcceppc.exe
e n d i f
MWLD_VERSION := 4.3
# Programs
i f e q ( $( WINDOWS ) , 1 )
WINE :=
AS := $( DEVKITPPC) /bin/powerpc-eabi-as.exe
CPP := $( DEVKITPPC) /bin/powerpc-eabi-cpp.exe -P
2022-10-14 06:43:37 +00:00
e l s e
i f e q ( $( NIX ) , 1 )
2022-10-16 12:53:22 +00:00
WINE := $( shell nix-build '<nixpkgs>' -A wine-staging --no-link) /bin/wine
AS := $( shell nix-build '<nixpkgs>' -A pkgsCross.ppc-embedded.gccCrossLibcStdenv.cc --no-link) /bin/powerpc-none-eabi-as
CPP := $( shell nix-build '<nixpkgs>' -A pkgsCross.ppc-embedded.gccCrossLibcStdenv.cc.cc --no-link) /bin/powerpc-none-eabi-cpp -P
2022-07-25 20:32:34 +00:00
e l s e
WINE ?= wine
AS := $( DEVKITPPC) /bin/powerpc-eabi-as
CPP := $( DEVKITPPC) /bin/powerpc-eabi-cpp -P
e n d i f
2022-10-14 06:43:37 +00:00
e n d i f
2022-07-25 20:32:34 +00:00
CC = $( WINE) tools/mwcc_compiler/$( MWCC_VERSION) /mwcceppc.exe
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
CC_EPI = $( WINE) tools/mwcc_compiler/$( MWCC_EPI_VERSION) /$( MWCC_EPI_EXE)
e n d i f
LD := $( WINE) tools/mwcc_compiler/$( MWLD_VERSION) /mwldeppc.exe
ELF2DOL := tools/elf2dol
SHA1SUM := sha1sum
PYTHON := python3
FRANK := tools/franklite.py
# Options
INCLUDES := -i include/
ASM_INCLUDES := -I include/
2022-10-14 06:43:37 +00:00
ASFLAGS := -mbroadway $( ASM_INCLUDES) --defsym version = $( VERSION)
2022-07-25 20:32:34 +00:00
i f e q ( $( VERBOSE ) , 1 )
# this set of LDFLAGS outputs warnings.
LDFLAGS := $( MAPGEN) -fp hard -nodefaults
e n d i f
i f e q ( $( VERBOSE ) , 0 )
# this set of LDFLAGS generates no warnings.
LDFLAGS := $( MAPGEN) -fp hard -nodefaults -w off
e n d i f
CFLAGS = -Cpp_exceptions off -enum int -inline auto -proc gekko -RTTI off -fp hard -fp_contract on -rostr -O4,p -use_lmw_stmw on -sdata 8 -sdata2 8 -nodefaults $( INCLUDES)
i f e q ( $( VERBOSE ) , 0 )
# this set of ASFLAGS generates no warnings.
ASFLAGS += -W
e n d i f
$(BUILD_DIR)/src/os/__start.o : MWCC_VERSION := 1.2.5
#-------------------------------------------------------------------------------
# Recipes
#-------------------------------------------------------------------------------
### Default target ###
default : all
all : $( DOL )
ALL_DIRS := $( sort $( dir $( O_FILES) ) )
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
EPI_DIRS := $( sort $( dir $( E_FILES) ) )
e n d i f
# Make sure build directory exists before compiling anything
DUMMY != mkdir -p $( ALL_DIRS)
# ifeq ($(EPILOGUE_PROCESS),1)
# Make sure profile directory exists before compiling anything
# DUMMY != mkdir -p $(EPI_DIRS)
# endif
.PHONY : tools
$(LDSCRIPT) : ldscript .lcf
$( QUIET) $( CPP) -MMD -MP -MT $@ -MF $@ .d -I include/ -I . -DBUILD_DIR= $( BUILD_DIR) -o $@ $<
$(DOL) : $( ELF ) | tools
$( QUIET) $( ELF2DOL) $< $@
$( QUIET) $( SHA1SUM) -c sha1/$( NAME) .$( VERSION) .sha1
i f n e q ( $( findstring -map ,$ ( LDFLAGS ) ) , )
$( QUIET) $( PYTHON) tools/calcprogress.py $( DOL) $( MAP)
e n d i f
clean :
rm -f -d -r build
rm -f -d -r epilogue
find . -name '*.o' -exec rm { } +
find . -name 'ctx.c' -exec rm { } +
find ./include -name "*.s" -type f -delete
$( MAKE) -C tools clean
tools :
$( MAKE) -C tools
2022-10-16 16:05:58 +00:00
build/o_files : $( O_FILES )
$( file >$@ ) $( foreach V,$^,$( file >>$@ ,$V ) )
@true
2022-07-25 20:32:34 +00:00
# ELF creation makefile instructions
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
@echo Linking ELF $@
2022-10-16 16:05:58 +00:00
$(ELF) : build /o_files $( E_FILES ) $( LDSCRIPT )
2022-07-25 20:32:34 +00:00
$( QUIET) $( LD) $( LDFLAGS) -o $@ -lcf $( LDSCRIPT) @build/o_files
e l s e
2022-10-16 16:05:58 +00:00
$(ELF) : build /o_files $( LDSCRIPT )
2022-07-25 20:32:34 +00:00
@echo Linking ELF $@
$( QUIET) $( LD) $( LDFLAGS) -o $@ -lcf $( LDSCRIPT) @build/o_files
e n d i f
$(BUILD_DIR)/%.o : %.s
@echo Assembling $<
$( QUIET) $( AS) $( ASFLAGS) -o $@ $<
$(BUILD_DIR)/%.o : %.c
@echo "Compiling " $<
$( QUIET) $( CC) $( CFLAGS) -c -o $@ $<
$(BUILD_DIR)/%.o : %.cp
@echo "Compiling " $<
$( QUIET) $( CC) $( CFLAGS) -c -o $@ $<
$(BUILD_DIR)/%.o : %.cpp
@echo "Compiling " $<
$( QUIET) $( CC) $( CFLAGS) -c -o $@ $<
i f e q ( $( EPILOGUE_PROCESS ) , 1 )
$(EPILOGUE_DIR)/%.o : %.c $( BUILD_DIR ) /%.o
@echo Frank is fixing $<
$( QUIET) $( PYTHON) $( FRANK) $( word 2,$^) $( word 2,$^)
$(EPILOGUE_DIR)/%.o : %.cp $( BUILD_DIR ) /%.o
@echo Frank is fixing $<
$( QUIET) $( PYTHON) $( FRANK) $( word 2,$^) $( word 2,$^)
$(EPILOGUE_DIR)/%.o : %.cpp $( BUILD_DIR ) /%.o
@echo Frank is fixing $<
$( QUIET) $( PYTHON) $( FRANK) $( word 2,$^) $( word 2,$^)
e n d i f
# If we need Frank, add the following after the @echo
# $(QUIET) $(CC_EPI) $(CFLAGS) -c -o $@ $<
### Debug Print ###
print-% : ; $( info $ * is a $ ( flavor $ *) variable set to [$ ( $ *) ]) @true