ftpiiu/Makefile

134 lines
4.8 KiB
Makefile
Raw Permalink Normal View History

2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
.SUFFIXES:
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
ifeq ($(strip $(DEVKITPRO)),)
2019-08-15 11:17:41 +02:00
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
2016-02-29 22:36:09 +01:00
endif
2019-08-15 11:17:41 +02:00
TOPDIR ?= $(CURDIR)
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
include $(DEVKITPRO)/wut/share/wut_rules
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01: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
2019-08-15 11:17:41 +02:00
# DATA is a list of directories containing data files
# INCLUDES is a list of directories containing header files
#-------------------------------------------------------------------------------
TARGET := $(notdir $(CURDIR))
2016-02-29 22:36:09 +01:00
BUILD := build
SOURCES := src \
src/utils
DATA :=
2019-08-15 11:17:41 +02:00
INCLUDES := src
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
# options for code generation
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
CFLAGS := -g -Wall -O2 -ffunction-sections \
$(MACHDEP)
CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__ -D_GNU_SOURCE
CXXFLAGS := $(CFLAGS)
ASFLAGS := -g $(ARCH)
LDFLAGS = -g $(ARCH) $(RPXSPECS) -Wl,-Map,$(notdir $*.map)
LIBS := -liosuhax -lwut
#-------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level
# containing include and lib
#-------------------------------------------------------------------------------
LIBDIRS := $(PORTLIBS) $(WUT_ROOT)
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
# no real need to edit anything past this point unless you need to add additional
# rules for different file extensions
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
ifneq ($(BUILD),$(notdir $(CURDIR)))
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
export OUTPUT := $(CURDIR)/$(TARGET)
export TOPDIR := $(CURDIR)
2016-02-29 22:36:09 +01:00
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
2019-08-15 11:17:41 +02:00
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
2016-02-29 22:36:09 +01:00
export DEPSDIR := $(CURDIR)/$(BUILD)
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
2019-08-15 11:17:41 +02:00
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
2016-02-29 22:36:09 +01:00
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
# use CXX for linking C++ projects, CC for standard C
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
ifeq ($(strip $(CPPFILES)),)
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
export LD := $(CC)
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
else
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
export LD := $(CXX)
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
endif
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +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)))
2016-02-29 22:36:09 +01:00
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
2019-08-15 11:17:41 +02:00
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
-I$(CURDIR)/$(BUILD)
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
.PHONY: $(BUILD) clean all
#-------------------------------------------------------------------------------
all: $(BUILD)
2016-02-29 22:36:09 +01:00
$(BUILD):
@[ -d $@ ] || mkdir -p $@
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
clean:
@echo clean ...
2019-08-15 11:17:41 +02:00
@rm -fr $(BUILD) $(TARGET).rpx $(TARGET).elf
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
else
2019-08-15 11:17:41 +02:00
.PHONY: all
2016-02-29 22:36:09 +01:00
DEPENDS := $(OFILES:.o=.d)
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
# main targets
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
all : $(OUTPUT).rpx
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
$(OUTPUT).rpx : $(OUTPUT).elf
$(OUTPUT).elf : $(OFILES)
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
$(OFILES_SRC) : $(HFILES_BIN)
2016-02-29 22:36:09 +01:00
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
# you need a rule like this for each extension you use as binary data
#-------------------------------------------------------------------------------
%.bin.o %_bin.h : %.bin
2016-02-29 22:36:09 +01:00
@echo $(notdir $<)
2019-08-15 11:17:41 +02:00
@$(bin2o)
2016-02-29 22:36:09 +01:00
-include $(DEPENDS)
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------
2016-02-29 22:36:09 +01:00
endif
2019-08-15 11:17:41 +02:00
#-------------------------------------------------------------------------------