Replace "ESPRESSO" flag by "__wiiu__" flag to fix compilation, add missing portlibs variable

This commit is contained in:
Maschell 2019-05-14 20:30:07 +02:00
parent fa4115712c
commit e5f57bfe8f
1 changed files with 2 additions and 1 deletions

View File

@ -8,8 +8,9 @@ $(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>dev
endif
ifeq ($(PLATFORM),wiiu)
MACHDEP = -DESPRESSO -mwup -mcpu=750 -meabi -mhard-float
MACHDEP = -D__wiiu__ -mcpu=750 -meabi -mhard-float
include $(DEVKITPPC)/base_rules
export PORTLIBS := $(DEVKITPRO)/portlibs/ppc
endif
ifeq ($(PLATFORM),wii)