WiiUPluginLoaderGUI/Makefile

165 lines
5.4 KiB
Makefile
Raw Normal View History

#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
.SUFFIXES:
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
ifeq ($(strip $(DEVKITPRO)),)
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
2018-09-22 19:52:52 +02:00
endif
TOPDIR ?= $(CURDIR)
2018-09-22 19:52:52 +02:00
include $(DEVKITPRO)/wut/share/wut_rules
2018-09-22 19:52:52 +02:00
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +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
# DATA is a list of directories containing data files
# INCLUDES is a list of directories containing header files
#-------------------------------------------------------------------------------
TARGET := $(notdir $(CURDIR))
BUILD := build
SOURCES := src \
src/custom/gui \
src/fs \
src/game \
src/plugin \
src/language \
src/menu \
src/menu/content \
src/resources \
src/settings \
src/system \
src/utils
DATA := data \
data/images \
data/sounds \
data/fonts
INCLUDES := src
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
# options for code generation
#-------------------------------------------------------------------------------
CFLAGS := -g -Wall -O2 -ffunction-sections \
$(MACHDEP)
CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__
CXXFLAGS := $(CFLAGS)
ASFLAGS := -g $(ARCH)
LDFLAGS = -g $(ARCH) $(RPXSPECS) -Wl,-Map,$(notdir $*.map)
LIBS := -lgui -lfreetype -lgd -lpng -ljpeg -lz -lmad -lvorbisidec -logg -lbz2 -lwut
#-------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level
# containing include and lib
#-------------------------------------------------------------------------------
LIBDIRS := $(PORTLIBS) $(WUT_ROOT)
2018-09-22 19:52:52 +02:00
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
# no real need to edit anything past this point unless you need to add additional
# rules for different file extensions
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
ifneq ($(BUILD),$(notdir $(CURDIR)))
#-------------------------------------------------------------------------------
FILELIST := $(shell bash ./filelist.sh)
export OUTPUT := $(CURDIR)/$(TARGET)
export TOPDIR := $(CURDIR)
2018-09-22 19:52:52 +02:00
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
2018-09-22 19:52:52 +02:00
export DEPSDIR := $(CURDIR)/$(BUILD)
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
2018-09-22 19:52:52 +02:00
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
# use CXX for linking C++ projects, CC for standard C
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
ifeq ($(strip $(CPPFILES)),)
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
export LD := $(CC)
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
else
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
export LD := $(CXX)
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
endif
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
export OFILES_BIN := $(addsuffix .o,$(BINFILES))
export OFILES_SRC := $(CPPFILES:.cpp=.o) $(CFILES:.c=.o) $(SFILES:.s=.o)
export OFILES := $(OFILES_BIN) $(OFILES_SRC)
export HFILES_BIN := $(addsuffix .h,$(subst .,_,$(BINFILES)))
2018-09-22 19:52:52 +02:00
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
-I$(CURDIR)/$(BUILD) -I$(PORTLIBS_PATH)/ppc/include/freetype2
2018-09-22 19:52:52 +02:00
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
2018-09-22 19:52:52 +02:00
.PHONY: $(BUILD) clean all
2018-09-22 19:52:52 +02:00
#-------------------------------------------------------------------------------
all: $(BUILD)
2018-09-22 19:52:52 +02:00
$(BUILD):
2018-09-22 19:52:52 +02:00
@[ -d $@ ] || mkdir -p $@
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
clean:
@echo clean ...
@rm -fr $(BUILD) $(TARGET).rpx $(TARGET).elf
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
else
.PHONY: all
2018-09-22 19:52:52 +02:00
DEPENDS := $(OFILES:.o=.d)
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
# main targets
#-------------------------------------------------------------------------------
all : $(OUTPUT).rpx
2018-09-22 19:52:52 +02:00
$(OUTPUT).rpx : $(OUTPUT).elf
$(OUTPUT).elf : $(OFILES)
2018-09-22 19:52:52 +02:00
$(OFILES_SRC) : $(HFILES_BIN)
2018-09-22 19:52:52 +02:00
#-------------------------------------------------------------------------------
# you need a rule like this for each extension you use as binary data
#-------------------------------------------------------------------------------
%.bin.o %_bin.h : %.bin
2018-09-22 19:52:52 +02:00
@echo $(notdir $<)
@$(bin2o)
2018-09-22 19:52:52 +02:00
%.png.o %_png.h : %.png
2018-09-22 19:52:52 +02:00
@echo $(notdir $<)
@$(bin2o)
%.ogg.o %_ogg.h : %.ogg
2018-09-22 19:52:52 +02:00
@echo $(notdir $<)
@$(bin2o)
%.mp3.o %_mp3.h : %.mp3
2018-09-22 19:52:52 +02:00
@echo $(notdir $<)
@$(bin2o)
%.ttf.o %_ttf.h : %.ttf
2018-09-22 19:52:52 +02:00
@echo $(notdir $<)
@$(bin2o)
2018-09-22 19:52:52 +02:00
-include $(DEPENDS)
#-------------------------------------------------------------------------------
2018-09-22 19:52:52 +02:00
endif
#-------------------------------------------------------------------------------