mirror of
https://github.com/libretro/RetroArch
synced 2025-01-07 13:10:20 +00:00
59 lines
1.3 KiB
Makefile
59 lines
1.3 KiB
Makefile
|
###
|
||
|
##
|
||
|
# Makefile for SSNES Wii.
|
||
|
##
|
||
|
###
|
||
|
##
|
||
|
|
||
|
DEBUG = 0
|
||
|
|
||
|
CC = powerpc-eabi-gcc
|
||
|
CXX = powerpc-eabi-g++
|
||
|
|
||
|
DOL_TARGET := ssnes.dol
|
||
|
ELF_TARGET := ssnes.elf
|
||
|
|
||
|
INCLUDE := -I. -I$(DEVKITPRO)/libogc/include
|
||
|
LIBDIRS := -L$(DEVKITPRO)/libogc/lib/wii
|
||
|
|
||
|
MACHDEP := -DGEKKO -mrvl -mcpu=750 -meabi -mhard-float
|
||
|
CFLAGS += -Wall -std=gnu99 $(MACHDEP) $(INCLUDE)
|
||
|
CXXFLAGS += -Wall -std=gnu99 $(MACHDEP) $(INCLUDE)
|
||
|
LDFLAGS := $(MACHDEP) -L.
|
||
|
LIBS := -logc -lsnes
|
||
|
|
||
|
OBJ = fifo_buffer.o ssnes.o driver.o file.o settings.o message.o rewind.o movie.o ups.o bps.o strl.o screenshot.o audio/hermite.o dynamic.o audio/utils.o conf/config_file.o wii/audio.o wii/main.o wii/input.o wii/video.o getopt.o
|
||
|
|
||
|
CFLAGS += -std=gnu99 -DHAVE_CONFIGFILE=1 -DPACKAGE_VERSION=\"0.9.3\" -Dmain=ssnes_main -Wno-char-subscripts
|
||
|
CXXFLAGS += -std=gnu99 -DHAVE_CONFIGFILE=1 -DPACKAGE_VERSION=\"0.9.3\" -Dmain=ssnes_main -Wno-char-subscripts
|
||
|
|
||
|
ifeq ($(DEBUG), 1)
|
||
|
CFLAGS += -O0 -g
|
||
|
CXXFLAGS += -O0 -g
|
||
|
else
|
||
|
CLFAGS += -O3
|
||
|
CXXFLAGS += -O3
|
||
|
endif
|
||
|
|
||
|
all: $(DOL_TARGET)
|
||
|
|
||
|
%.dol: %.elf
|
||
|
elf2dol $< $@
|
||
|
|
||
|
$(ELF_TARGET): $(OBJ)
|
||
|
$(CXX) -o $@ $(OBJ) $(LDFLAGS) $(LIBDIRS) $(LIBS)
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) $(CFLAGS) -c -o $@ $<
|
||
|
|
||
|
%.o: %.cpp
|
||
|
$(CXX) $(CXXFLAGS) -c -o $@ $<
|
||
|
|
||
|
clean:
|
||
|
rm -f $(DOL_TARGET)
|
||
|
rm -f $(ELF_TARGET)
|
||
|
rm -f $(OBJ)
|
||
|
|
||
|
.PHONY: clean
|
||
|
|