2008-08-06 03:45:56 +02:00
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# Clear the implicit built in rules
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
.SUFFIXES:
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifeq ($(strip $(DEVKITPPC)),)
|
|
|
|
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC")
|
|
|
|
endif
|
|
|
|
|
|
|
|
include $(DEVKITPPC)/wii_rules
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# TARGET is the name of the output
|
|
|
|
# BUILD is the directory where object files & intermediate files will be placed
|
|
|
|
# SOURCES is a list of directories containing source code
|
|
|
|
# INCLUDES is a list of directories containing extra header files
|
|
|
|
#---------------------------------------------------------------------------------
|
2008-12-19 00:22:32 +01:00
|
|
|
TARGET := snes9xgx-wii
|
2008-09-02 03:39:56 +02:00
|
|
|
TARGETDIR := executables
|
2008-08-06 03:45:56 +02:00
|
|
|
BUILD := build_wii
|
2009-03-11 18:28:37 +01:00
|
|
|
SOURCES := source/ngc/images source/ngc/sounds source/ngc/fonts \
|
2009-11-30 09:14:38 +01:00
|
|
|
source/ngc/gui source/ngc source/snes9x source/sz source/unzip
|
2008-12-24 09:02:04 +01:00
|
|
|
INCLUDES := source/snes9x source/ngc source/unzip
|
2008-08-06 03:45:56 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# options for code generation
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
|
2008-10-05 08:47:57 +02:00
|
|
|
CFLAGS = -g -O3 -Wall $(MACHDEP) $(INCLUDE) \
|
2009-11-30 09:14:38 +01:00
|
|
|
-DNGC \
|
|
|
|
-DNO_ASM -DRIGHTSHIFT_IS_SAR \
|
|
|
|
-DCPU_SHUTDOWN -DSPC700_SHUTDOWN \
|
|
|
|
-DSPC700_C -DSDD1_DECOMP \
|
|
|
|
-DCORRECT_VRAM_READS -DNEW_COLOUR_BLENDING \
|
2008-10-14 11:21:34 +02:00
|
|
|
-D_SZ_ONE_DIRECTORY -D_LZMA_IN_CB -D_LZMA_OUT_READ \
|
2009-05-21 06:17:44 +02:00
|
|
|
-fomit-frame-pointer \
|
2009-10-02 00:35:12 +02:00
|
|
|
-Wno-unused-parameter -Wno-strict-aliasing \
|
|
|
|
-Wno-write-strings -Wno-parentheses
|
2009-03-11 18:28:37 +01:00
|
|
|
|
2008-08-25 07:57:43 +02:00
|
|
|
CXXFLAGS = -save-temps -Xassembler -aln=$@.lst $(CFLAGS)
|
2008-08-06 03:45:56 +02:00
|
|
|
|
2008-08-19 08:05:57 +02:00
|
|
|
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map
|
2008-08-06 03:45:56 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# any extra libraries we wish to link with the project
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-10-03 19:03:20 +02:00
|
|
|
LIBS := -ldb -ldi -liso9660 -lpng -lmxml \
|
2009-11-29 09:12:40 +01:00
|
|
|
-lfat -lwiiuse -lz -lbte -lasnd -logc -lvorbisidec -lfreetype -ltinysmb
|
2008-08-06 03:45:56 +02:00
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# list of directories containing libraries, this must be the top level containing
|
|
|
|
# include and lib
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-09-15 08:13:08 +02:00
|
|
|
LIBDIRS := $(PORTLIBS)
|
2008-08-06 03:45:56 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# no real need to edit anything past this point unless you need to add additional
|
|
|
|
# rules for different file extensions
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
|
2008-09-02 03:39:56 +02:00
|
|
|
export OUTPUT := $(CURDIR)/$(TARGETDIR)/$(TARGET)
|
2009-03-11 18:28:37 +01:00
|
|
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir))
|
2008-08-06 03:45:56 +02:00
|
|
|
export DEPSDIR := $(CURDIR)/$(BUILD)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# automatically build a list of object files for our project
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
|
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
|
|
sFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
|
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.S)))
|
2009-03-11 18:28:37 +01:00
|
|
|
TTFFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.ttf)))
|
|
|
|
PNGFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.png)))
|
|
|
|
OGGFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.ogg)))
|
|
|
|
PCMFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.pcm)))
|
|
|
|
|
2008-08-06 03:45:56 +02:00
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# use CXX for linking C++ projects, CC for standard C
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifeq ($(strip $(CPPFILES)),)
|
|
|
|
export LD := $(CC)
|
|
|
|
else
|
|
|
|
export LD := $(CXX)
|
|
|
|
endif
|
|
|
|
|
2009-03-11 18:28:37 +01:00
|
|
|
export OFILES := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
|
|
|
|
$(sFILES:.s=.o) $(SFILES:.S=.o) \
|
|
|
|
$(TTFFILES:.ttf=.ttf.o) $(PNGFILES:.png=.png.o) \
|
|
|
|
$(OGGFILES:.ogg=.ogg.o) $(PCMFILES:.pcm=.pcm.o)
|
2008-08-06 03:45:56 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# build a list of include paths
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
|
|
-I$(CURDIR)/$(BUILD) \
|
2009-09-15 08:13:08 +02:00
|
|
|
-I$(LIBOGC_INC) -I$(PORTLIBS)/include/freetype2
|
2008-08-06 03:45:56 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# build a list of library paths
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
|
|
|
-L$(LIBOGC_LIB)
|
|
|
|
|
2008-09-02 03:39:56 +02:00
|
|
|
export OUTPUT := $(CURDIR)/$(TARGETDIR)/$(TARGET)
|
2008-08-06 03:45:56 +02:00
|
|
|
.PHONY: $(BUILD) clean
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
$(BUILD):
|
|
|
|
@[ -d $@ ] || mkdir -p $@
|
2008-09-02 03:39:56 +02:00
|
|
|
@[ -d $(TARGETDIR) ] || mkdir -p $(TARGETDIR)
|
2008-08-06 03:45:56 +02:00
|
|
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile.wii
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
clean:
|
|
|
|
@echo clean ...
|
|
|
|
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
run:
|
|
|
|
wiiload $(OUTPUT).dol
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
reload:
|
|
|
|
wiiload -r $(OUTPUT).dol
|
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
else
|
|
|
|
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# main targets
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
$(OUTPUT).dol: $(OUTPUT).elf
|
|
|
|
$(OUTPUT).elf: $(OFILES)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-03-11 18:28:37 +01:00
|
|
|
# This rule links in binary data with .ttf, .png, and .mp3 extensions
|
2008-08-06 03:45:56 +02:00
|
|
|
#---------------------------------------------------------------------------------
|
2009-03-11 18:28:37 +01:00
|
|
|
%.ttf.o : %.ttf
|
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
%.png.o : %.png
|
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
%.ogg.o : %.ogg
|
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
%.pcm.o : %.pcm
|
2008-08-06 03:45:56 +02:00
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
-include $(DEPENDS)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|