mirror of
https://github.com/pret/pokediamond.git
synced 2026-03-21 17:54:29 -05:00
100 lines
2.5 KiB
Makefile
100 lines
2.5 KiB
Makefile
# Try to include devkitarm if installed
|
|
TOOLCHAIN := $(DEVKITARM)
|
|
|
|
ifneq (,$(wildcard $(TOOLCHAIN)/base_tools))
|
|
include $(TOOLCHAIN)/base_tools
|
|
endif
|
|
|
|
# If you are using WSL, it is recommended you build with NOWINE=1.
|
|
WSLENV ?= no
|
|
ifeq ($(WSLENV),no)
|
|
NOWINE = 0
|
|
else
|
|
# As of build 17063, WSLENV is defined in both WSL1 and WSL2
|
|
# so we need to use the kernel release to detect between
|
|
# the two.
|
|
UNAME_R := $(shell uname -r)
|
|
ifeq ($(findstring WSL2,$(UNAME_R)),)
|
|
NOWINE = 1
|
|
else
|
|
NOWINE = 0
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
EXE := .exe
|
|
WINE :=
|
|
else
|
|
EXE :=
|
|
WINE := wine
|
|
endif
|
|
|
|
ifeq ($(NOWINE),1)
|
|
WINE :=
|
|
endif
|
|
|
|
# Compare result of arm9, arm7, and ROM to sha1 hash(s)
|
|
COMPARE ?= 1
|
|
|
|
##################### Compiler Options #######################
|
|
|
|
MWCCVERSION = 1.2/sp2p3
|
|
|
|
CROSS := arm-none-eabi-
|
|
|
|
MWCCARM = ../../tools/mwccarm/$(MWCCVERSION)/mwccarm.exe
|
|
# Argh... due to EABI version shenanigans, we can't use GNU LD to link together
|
|
# MWCC built objects and GNU built ones. mwldarm, however, doesn't care, so we
|
|
# have to use mwldarm for now.
|
|
# TODO: Is there a hack workaround to let us go back to GNU LD? Ideally, the
|
|
# only dependency should be MWCCARM.
|
|
MWLDARM = ../../tools/mwccarm/$(MWCCVERSION)/mwldarm.exe
|
|
MWASMARM = ../../tools/mwccarm/$(MWCCVERSION)/mwasmarm.exe
|
|
SCANINC = ../../tools/scaninc/scaninc$(EXE)
|
|
|
|
AS = $(WINE) $(MWASMARM)
|
|
CC = $(WINE) $(MWCCARM)
|
|
CPP := cpp -P
|
|
LD = $(WINE) $(MWLDARM)
|
|
AR := $(CROSS)ar
|
|
OBJDUMP := $(CROSS)objdump
|
|
OBJCOPY := $(CROSS)objcopy
|
|
|
|
# ./tools/mwccarm/2.0/base/mwasmarm.exe -proc arm5te asm/arm9_thumb.s -o arm9.o
|
|
MWASFLAGS = -proc arm5te -g -ir ../..
|
|
MWCFLAGS = -O4,p -sym on -inline on,noauto -proc arm946e -msgstyle gcc -gccinc -fp soft -lang c99 -Cpp_exceptions off -i include -ir include-mw -ir arm9/lib/MSL_C/include -ir arm9/lib/libnns/include -ir arm9/lib/NitroSDK/include -W all -W pedantic -W noimpl_signedunsigned -W noimplicitconv -W nounusedarg -W nomissingreturn -W error
|
|
MWLDFLAGS = -library -sym on -nodead -w off -proc v5te -interworking -pic -msgstyle gcc
|
|
ARFLAGS = rcS
|
|
|
|
export MWCIncludes := MSL_C/include libnns/include NitroSDK/include
|
|
|
|
################ Targets #################
|
|
|
|
LIBS := libsyscall.a
|
|
.PHONY: all clean
|
|
|
|
all: libs $(LIBS)
|
|
@:
|
|
|
|
libs:
|
|
$(MAKE) -C MSL_C
|
|
$(MAKE) -C libnns
|
|
$(MAKE) -C NitroSDK
|
|
|
|
clean:
|
|
$(MAKE) clean -C MSL_C
|
|
$(MAKE) clean -C libnns
|
|
$(MAKE) clean -C NitroSDK
|
|
$(RM) $(LIBS)
|
|
|
|
libsyscall.a: syscall/_svc_mw.o
|
|
|
|
%.a:
|
|
$(AR) $(ARFLAGS) -o $@ $^
|
|
|
|
%.o: %.c
|
|
$(CC) $(MWCFLAGS) -o $@ $<
|
|
|
|
%.o: %.s
|
|
$(AS) $(MWASFLAGS) -o $@ $<
|