2008-04-28 17:08:29 +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
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-03-27 05:02:39 +01:00
|
|
|
TARGET := fceugx-wii
|
2008-09-02 03:57:21 +02:00
|
|
|
TARGETDIR := executables
|
|
|
|
BUILD := build_wii
|
2009-03-27 05:02:39 +01:00
|
|
|
SOURCES := source/ngc/images source/ngc/sounds source/ngc/fonts \
|
|
|
|
source/ngc/gui source/ngc \
|
|
|
|
source/fceultra source/fceultra/boards source/fceultra/input \
|
2009-07-17 19:27:04 +02:00
|
|
|
source/fceultra/utils source/fceultra/mappers source/fceultra/mbshare \
|
2009-03-27 05:02:39 +01:00
|
|
|
source/sz source/unzip
|
2008-12-24 08:58:23 +01:00
|
|
|
INCLUDES := source/fceultra source/ngc source/unzip
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# options for code generation
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-03-03 09:21:27 +01:00
|
|
|
CFLAGS = -g -O3 -Wall $(MACHDEP) $(INCLUDE) -DNGC \
|
2009-07-17 19:27:04 +02:00
|
|
|
-DFRAMESKIP -DPSS_STYLE=1 -DPATH_MAX=1024 -DHAVE_ASPRINTF \
|
2008-09-19 22:53:09 +02:00
|
|
|
-D_SZ_ONE_DIRECTORY -D_LZMA_IN_CB -D_LZMA_OUT_READ \
|
2009-05-21 06:15:32 +02:00
|
|
|
-fomit-frame-pointer \
|
2009-10-02 05:14:04 +02:00
|
|
|
-Wno-unused-parameter -Wno-strict-aliasing -Wno-write-strings
|
2008-04-28 17:08:29 +02:00
|
|
|
CXXFLAGS = $(CFLAGS)
|
|
|
|
|
|
|
|
LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map -Wl,--cref
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# any extra libraries we wish to link with the project
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-10-03 19:04:33 +02:00
|
|
|
LIBS := -ldb -ldi -liso9660 -lpng -lmxml \
|
2009-11-29 08:55:21 +01:00
|
|
|
-lfat -lwiiuse -lz -lbte -lasnd -logc -lvorbisidec -lfreetype -ltinysmb
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# list of directories containing libraries, this must be the top level containing
|
|
|
|
# include and lib
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-09-15 08:06:21 +02:00
|
|
|
LIBDIRS := $(PORTLIBS)
|
2008-04-28 17:08:29 +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:57:21 +02:00
|
|
|
export OUTPUT := $(CURDIR)/$(TARGETDIR)/$(TARGET)
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
|
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
|
|
|
|
|
|
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-27 05:02:39 +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-04-28 17:08:29 +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-27 05:02:39 +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-04-28 17:08:29 +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:06:21 +02:00
|
|
|
-I$(LIBOGC_INC) -I$(PORTLIBS)/include/freetype2
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# build a list of library paths
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
|
|
|
|
-L$(LIBOGC_LIB)
|
|
|
|
|
2008-09-02 03:57:21 +02:00
|
|
|
export OUTPUT := $(CURDIR)/$(TARGETDIR)/$(TARGET)
|
2008-04-28 17:08:29 +02:00
|
|
|
.PHONY: $(BUILD) clean
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
$(BUILD):
|
|
|
|
@[ -d $@ ] || mkdir -p $@
|
2008-09-02 03:57:21 +02:00
|
|
|
@[ -d $(TARGETDIR) ] || mkdir -p $(TARGETDIR)
|
|
|
|
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile.wii
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
clean:
|
|
|
|
@echo clean ...
|
2009-03-27 05:02:39 +01:00
|
|
|
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
run:
|
2009-03-27 05:02:39 +01:00
|
|
|
wiiload $(OUTPUT).dol
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
reload:
|
2009-03-27 05:02:39 +01:00
|
|
|
wiiload -r $(OUTPUT).dol
|
2008-04-28 17:08:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
else
|
|
|
|
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
# main targets
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
$(OUTPUT).dol: $(OUTPUT).elf
|
|
|
|
$(OUTPUT).elf: $(OFILES)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
2009-03-27 05:02:39 +01:00
|
|
|
# This rule links in binary data with .ttf, .png, and .mp3 extensions
|
2008-04-28 17:08:29 +02:00
|
|
|
#---------------------------------------------------------------------------------
|
2009-03-27 05:02:39 +01:00
|
|
|
%.ttf.o : %.ttf
|
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
%.png.o : %.png
|
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
%.ogg.o : %.ogg
|
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
%.pcm.o : %.pcm
|
2008-04-28 17:08:29 +02:00
|
|
|
@echo $(notdir $<)
|
|
|
|
$(bin2o)
|
|
|
|
|
|
|
|
-include $(DEPENDS)
|
|
|
|
|
|
|
|
#---------------------------------------------------------------------------------
|
|
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|