Makefile: default devkitPPC path; disable WINEDEBUG messages

This commit is contained in:
Luke Street 2022-04-08 17:26:47 -04:00
parent a082ae9ddf
commit 84ee87e72a
1 changed files with 2 additions and 0 deletions

View File

@ -76,12 +76,14 @@ endif
MWLD_VERSION := 2.6
# Programs
export WINEDEBUG ?= -all
ifeq ($(WINDOWS),1)
WINE :=
AS := $(DEVKITPPC)/bin/powerpc-eabi-as.exe
CPP := $(DEVKITPPC)/bin/powerpc-eabi-cpp.exe -P
else
WINE ?= wine
DEVKITPPC ?= /opt/devkitpro/devkitPPC
AS := $(DEVKITPPC)/bin/powerpc-eabi-as
CPP := $(DEVKITPPC)/bin/powerpc-eabi-cpp -P
endif