Fix makefile

This commit is contained in:
YohannDR 2022-11-27 13:52:50 +01:00
parent 5e316559ad
commit 9819fb102f
2 changed files with 2 additions and 2 deletions

View File

@ -15,9 +15,9 @@ MAKER_CODE = 01
GAME_REVISION = 00
# Binaries
CPP = cpp
TOOLCHAIN ?= arm-none-eabi-
AS = $(TOOLCHAIN)as
CPP = $(TOOLCHAIN)cpp
LD = $(TOOLCHAIN)ld
OBJCOPY = $(TOOLCHAIN)objcopy
OBJDUMP = $(TOOLCHAIN)objdump

View File

@ -33,4 +33,4 @@ This produces the following ROMs:
## Build
- Run `make clean` if necessary
- Run `make CPP=cpp` (using the -j option is recommended to speed up the process)
- Run `make` (using the -j option is recommended to speed up the process)