malamar/Makefile

143 lines
5.2 KiB
Makefile
Raw Permalink Normal View History

2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
.SUFFIXES:
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
ifeq ($(strip $(DEVKITPRO)),)
2021-09-12 20:59:09 +10:00
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
2019-04-07 22:13:09 +10:00
endif
2021-09-12 20:59:09 +10:00
TOPDIR ?= $(CURDIR)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
include $(DEVKITPRO)/wups/share/wups_rules
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
WUT_ROOT := $(DEVKITPRO)/wut
WUMS_ROOT := $(DEVKITPRO)/wums
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10: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
2021-09-12 20:59:09 +10:00
# DATA is a list of directories containing data files
# INCLUDES is a list of directories containing header files
#-------------------------------------------------------------------------------
TARGET := Inkay-pretendo
BUILD := build
SOURCES := src src/utils
DATA := data
INCLUDES := src
#-------------------------------------------------------------------------------
# options for code generation
#-------------------------------------------------------------------------------
CFLAGS := -g -Wall -O2 -ffunction-sections \
$(MACHDEP)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__ -D__WUPS__
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
CXXFLAGS := $(CFLAGS)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
ASFLAGS := -g $(ARCH)
LDFLAGS = -g $(ARCH) $(RPXSPECS) -Wl,-Map,$(notdir $*.map)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
LDFLAGS += -T$(WUMS_ROOT)/share/libkernel.ld $(WUPSSPECS)
2019-04-07 22:13:09 +10:00
2023-03-23 12:57:15 +11:00
LIBS := -lwups -lmocha -lkernel -lwut -lnotifications
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level
# containing include and lib
#-------------------------------------------------------------------------------
2022-08-31 22:07:57 +10:00
LIBDIRS := $(PORTLIBS) $(WUMS_ROOT) $(WUPS_ROOT) $(WUT_ROOT) $(WUT_ROOT)/usr
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
# no real need to edit anything past this point unless you need to add additional
# rules for different file extensions
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
ifneq ($(BUILD),$(notdir $(CURDIR)))
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
export OUTPUT := $(CURDIR)/$(TARGET)
export TOPDIR := $(CURDIR)
2019-04-07 22:13:09 +10:00
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
2021-09-12 20:59:09 +10:00
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
2019-04-07 22:13:09 +10:00
export DEPSDIR := $(CURDIR)/$(BUILD)
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
2021-09-12 20:59:09 +10:00
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
2019-04-07 22:13:09 +10:00
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
# use CXX for linking C++ projects, CC for standard C
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
ifeq ($(strip $(CPPFILES)),)
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
export LD := $(CC)
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
else
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
export LD := $(CXX)
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
endif
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10: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)))
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
-I$(CURDIR)/$(BUILD)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
.PHONY: $(BUILD) clean all
#-------------------------------------------------------------------------------
all: $(BUILD)
2019-04-07 22:13:09 +10:00
$(BUILD):
2023-03-20 15:05:54 +11:00
@$(shell [ ! -d $(BUILD) ] && mkdir -p $(BUILD))
2019-04-07 22:13:09 +10:00
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
clean:
@echo clean ...
2021-09-12 20:59:09 +10:00
@rm -fr $(BUILD) $(TARGET).wps $(TARGET).elf
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
else
2021-09-12 20:59:09 +10:00
.PHONY: all
2019-04-07 22:13:09 +10:00
DEPENDS := $(OFILES:.o=.d)
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
# main targets
#-------------------------------------------------------------------------------
all : $(OUTPUT).wps
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
$(OUTPUT).wps : $(OUTPUT).elf
$(OUTPUT).elf : $(OFILES)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
$(OFILES_SRC) : $(HFILES_BIN)
2019-04-07 22:13:09 +10:00
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
# you need a rule like this for each extension you use as binary data
#-------------------------------------------------------------------------------
%.bin.o %_bin.h : %.bin
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
@echo $(notdir $<)
2021-09-12 20:59:09 +10:00
@$(bin2o)
2019-04-07 22:13:09 +10:00
%.pem.o %_pem.h : %.pem
#-------------------------------------------------------------------------------
@echo $(notdir $<)
@$(bin2o)
2019-04-07 22:13:09 +10:00
-include $(DEPENDS)
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------
2019-04-07 22:13:09 +10:00
endif
2021-09-12 20:59:09 +10:00
#-------------------------------------------------------------------------------