Skip to content

Commit

Permalink
fix wii makefile paths
Browse files Browse the repository at this point in the history
  • Loading branch information
ToadKing committed Aug 12, 2012
1 parent 62ef3b4 commit 18780e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Makefile.libretro-fceumm
Expand Up @@ -47,8 +47,8 @@ else ifeq ($(platform), xenon)
CFLAGS += -DHAVE_ASPRINTF
else ifeq ($(platform), wii)
TARGET := libretro_wii.a
CC = powerpc-eabi-gcc
AR = powerpc-eabi-ar
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar
PLATFORM_DEFINES := -DGEKKO -mrvl -mcpu=750 -meabi -mhard-float
CFLAGS += -DHAVE_ASPRINTF
else
Expand Down
4 changes: 2 additions & 2 deletions Makefile.libretro-fceux
Expand Up @@ -56,8 +56,8 @@ else ifeq ($(platform), xenon)
CFLAGS += -DHAVE_ASPRINTF
else ifeq ($(platform), wii)
TARGET := libretro_wii.a
CC = powerpc-eabi-gcc
AR = powerpc-eabi-ar
CC = $(DEVKITPPC)/bin/powerpc-eabi-gcc
AR = $(DEVKITPPC)/bin/powerpc-eabi-ar
PLATFORM_DEFINES := -DGEKKO -mrvl -mcpu=750 -meabi -mhard-float
CFLAGS += -DHAVE_ASPRINTF
CXXFLAGS += -DHAVE_ASPRINTF
Expand Down

0 comments on commit 18780e3

Please sign in to comment.