ScreenshotWUPS/Makefile

148 lines
5.3 KiB
Makefile
Raw Normal View History

2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
.SUFFIXES:
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
ifeq ($(strip $(DEVKITPRO)),)
2020-12-11 16:41:37 +01:00
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
2018-07-01 19:12:35 +02:00
endif
2020-12-11 16:41:37 +01:00
TOPDIR ?= $(CURDIR)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
include $(DEVKITPRO)/wups/share/wups_rules
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
WUT_ROOT := $(DEVKITPRO)/wut
WUMS_ROOT := $(DEVKITPRO)/wums
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +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
2020-12-11 16:41:37 +01:00
# DATA is a list of directories containing data files
# INCLUDES is a list of directories containing header files
#-------------------------------------------------------------------------------
TARGET := screenshot
BUILD := build
SOURCES := src src/utils src/fs
DATA := data
INCLUDES := src
#-------------------------------------------------------------------------------
# options for code generation
#-------------------------------------------------------------------------------
2023-01-26 12:40:40 +01:00
CFLAGS := -Wall -O3 -ffunction-sections \
2020-12-11 16:41:37 +01:00
$(MACHDEP)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
CFLAGS += $(INCLUDE) -D__WIIU__ -D__WUT__ -D__WUPS__
2018-07-01 19:12:35 +02:00
2022-09-24 16:11:06 +02:00
CXXFLAGS := $(CFLAGS) -std=c++20
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
ASFLAGS := -g $(ARCH)
LDFLAGS = -g $(ARCH) $(RPXSPECS) -Wl,-Map,$(notdir $*.map) -T$(WUMS_ROOT)/share/libmappedmemory.ld $(WUPSSPECS)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
ifeq ($(DEBUG),1)
CXXFLAGS += -DDEBUG -g
CFLAGS += -DDEBUG -g
2018-07-01 19:12:35 +02:00
endif
2020-12-11 16:41:37 +01:00
ifeq ($(DEBUG),VERBOSE)
CXXFLAGS += -DDEBUG -DVERBOSE_DEBUG -g
CFLAGS += -DDEBUG -DVERBOSE_DEBUG -g
2018-07-01 19:12:35 +02:00
endif
2023-01-22 16:38:23 +01:00
LIBS := -lwups -lwut -lgd -lpng -ljpeg -lz -lnotifications -lmappedmemory
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
# list of directories containing libraries, this must be the top level
# containing include and lib
#-------------------------------------------------------------------------------
LIBDIRS := $(PORTLIBS) $(WUPS_ROOT) $(WUT_ROOT) $(WUMS_ROOT)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
# no real need to edit anything past this point unless you need to add additional
# rules for different file extensions
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
ifneq ($(BUILD),$(notdir $(CURDIR)))
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
export OUTPUT := $(CURDIR)/$(TARGET)
export TOPDIR := $(CURDIR)
2018-07-01 19:12:35 +02:00
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
2020-12-11 16:41:37 +01:00
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
2018-07-01 19:12:35 +02:00
export DEPSDIR := $(CURDIR)/$(BUILD)
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
2020-12-11 16:41:37 +01:00
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
2018-07-01 19:12:35 +02:00
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
# use CXX for linking C++ projects, CC for standard C
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
ifeq ($(strip $(CPPFILES)),)
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
export LD := $(CC)
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
else
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
export LD := $(CXX)
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
endif
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01: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-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
-I$(CURDIR)/$(BUILD)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
export LIBPATHS := $(foreach dir,$(LIBDIRS),-L$(dir)/lib)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
.PHONY: $(BUILD) clean all
#-------------------------------------------------------------------------------
all: $(BUILD)
2018-07-01 19:12:35 +02:00
$(BUILD):
2020-12-11 16:41:37 +01:00
@$(shell [ ! -d $(BUILD) ] && mkdir -p $(BUILD))
2018-07-01 19:12:35 +02:00
@$(MAKE) --no-print-directory -C $(BUILD) -f $(CURDIR)/Makefile
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
clean:
@echo clean ...
2020-12-11 16:41:37 +01:00
@rm -fr $(BUILD) $(TARGET).wps $(TARGET).elf
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
else
2020-12-11 16:41:37 +01:00
.PHONY: all
2018-07-01 19:12:35 +02:00
DEPENDS := $(OFILES:.o=.d)
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
# main targets
#-------------------------------------------------------------------------------
all : $(OUTPUT).wps
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
$(OUTPUT).wps : $(OUTPUT).elf
$(OUTPUT).elf : $(OFILES)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
$(OFILES_SRC) : $(HFILES_BIN)
2018-07-01 19:12:35 +02:00
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
# you need a rule like this for each extension you use as binary data
#-------------------------------------------------------------------------------
%.bin.o %_bin.h : %.bin
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
@echo $(notdir $<)
2020-12-11 16:41:37 +01:00
@$(bin2o)
2018-07-01 19:12:35 +02:00
-include $(DEPENDS)
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------
2018-07-01 19:12:35 +02:00
endif
2020-12-11 16:41:37 +01:00
#-------------------------------------------------------------------------------