Genesis-Plus-GX/Makefile.wii

141 lines
6.0 KiB
Makefile
Raw Normal View History

2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# Clear the implicit built in rules
#---------------------------------------------------------------------------------
.SUFFIXES:
2008-08-07 14:26:07 +02:00
#---------------------------------------------------------------------------------
ifeq ($(strip $(DEVKITPPC)),)
$(error "Please set DEVKITPPC in your environment. export DEVKITPPC=<path to>devkitPPC)
endif
include $(DEVKITPPC)/wii_rules
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# 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-08-07 14:26:07 +02:00
TARGET := genplus_wii
BUILD := build_wii
SOURCES := source source/m68k source/z80 source/sound source/sound/SRC source/ntsc source/cart_hw source/cart_hw/svp \
source/ngc source/ngc/gui source/ngc/fileio source/ngc/png
INCLUDES := source source/m68k source/z80 source/sound source/sound/SRC source/ntsc source/cart_hw source/cart_hw/svp \
source/ngc source/ngc/gui source/ngc/fileio source/ngc/png
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# options for code generation
#---------------------------------------------------------------------------------
CFLAGS = -O3 -fomit-frame-pointer -mrvl -Wall $(MACHDEP) -Wno-strict-aliasing $(INCLUDE) -DWORDS_BIGENDIAN -DNGC="1" -DHW_RVL
2008-08-07 14:26:07 +02:00
CXXFLAGS = $(CFLAGS)
2007-08-10 22:34:06 +02:00
LDFLAGS = $(MACHDEP) -Wl,-Map,$(notdir $@).map
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
# any extra libraries we wish to link with the project
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
LIBS := -lpng -ldi -lfat -lwiiuse -lbte -logc -lm -lz
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
# list of directories containing libraries, this must be the top level containing
# include and lib
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
LIBDIRS :=
2007-08-10 22:34:06 +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-08-07 14:26:07 +02:00
2007-08-10 22:34:06 +02:00
export OUTPUT := $(CURDIR)/$(TARGET)
2008-08-07 14:26:07 +02:00
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
export DEPSDIR := $(CURDIR)/$(BUILD)
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# 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)))
2008-08-07 14:26:07 +02:00
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# use CXX for linking C++ projects, CC for standard C
#---------------------------------------------------------------------------------
ifeq ($(strip $(CPPFILES)),)
export LD := $(CC)
else
export LD := $(CXX)
endif
2008-08-07 14:26:07 +02:00
export OFILES := $(addsuffix .o,$(BINFILES)) \
$(CPPFILES:.cpp=.o) $(CFILES:.c=.o) \
$(sFILES:.s=.o) $(SFILES:.S=.o)
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# build a list of include paths
#---------------------------------------------------------------------------------
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
2008-08-07 14:26:07 +02:00
-I$(CURDIR)/$(BUILD) \
-I$(LIBOGC_INC)
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
# build a list of library paths
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib) \
-L$(LIBOGC_LIB)
2007-08-10 22:34:06 +02:00
export OUTPUT := $(CURDIR)/$(TARGET)
.PHONY: $(BUILD) clean
#---------------------------------------------------------------------------------
$(BUILD):
2008-08-07 14:26:07 +02:00
@[ -d $@ ] || mkdir -p $@
2007-08-10 22:34:06 +02:00
@make --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
#---------------------------------------------------------------------------------
clean:
@echo clean ...
2008-08-07 14:26:07 +02:00
@rm -fr $(BUILD) $(OUTPUT).elf $(OUTPUT).dol
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
run:
psoload $(TARGET).dol
#---------------------------------------------------------------------------------
reload:
psoload -r $(TARGET).dol
#---------------------------------------------------------------------------------
else
DEPENDS := $(OFILES:.o=.d)
#---------------------------------------------------------------------------------
# main targets
#---------------------------------------------------------------------------------
$(OUTPUT).dol: $(OUTPUT).elf
$(OUTPUT).elf: $(OFILES)
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
# This rule links in binary data with the .jpg extension
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
%.jpg.o : %.jpg
2007-08-10 22:34:06 +02:00
#---------------------------------------------------------------------------------
2008-08-07 14:26:07 +02:00
@echo $(notdir $<)
$(bin2o)
2007-08-10 22:34:06 +02:00
-include $(DEPENDS)
#---------------------------------------------------------------------------------
endif
#---------------------------------------------------------------------------------