diff --git a/.gitignore b/.gitignore index 6a9f223ed..0aaa60872 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ __pycache__ +*.pyc tools/mwcc_compiler/*.* tools/elf2dol *.asm diff --git a/Makefile b/Makefile index 89f0ad841..68104037d 100644 --- a/Makefile +++ b/Makefile @@ -64,8 +64,8 @@ AS := $(DEVKITPPC)/bin/powerpc-eabi-as OBJCOPY := $(DEVKITPPC)/bin/powerpc-eabi-objcopy CC := $(WINE) tools/mwcc_compiler/2.0/mwcceppc.exe LD := $(WINE) tools/mwcc_compiler/2.7/mwldeppc.exe -PPROC := python tools/postprocess.py -GLBLASM := python tools/inlineasm/globalasm.py +PPROC := python3 tools/postprocess.py +GLBLASM := python3 tools/inlineasm/globalasm.py ELF2DOL := tools/elf2dol SHA1SUM := sha1sum ASMDIFF := ./asmdiff.sh