mirror of
https://github.com/hax4dazy/TinWoo.git
synced 2025-02-09 19:25:05 +01:00
212 lines
7.7 KiB
Makefile
212 lines
7.7 KiB
Makefile
#---------------------------------------------------------------------------------
|
|
.SUFFIXES:
|
|
#---------------------------------------------------------------------------------
|
|
|
|
ifeq ($(strip $(DEVKITPRO)),)
|
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>/devkitpro")
|
|
endif
|
|
|
|
include $(DEVKITPRO)/libnx/switch_rules
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# TARGET is the name of the output
|
|
# 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 := usbhsfs
|
|
SOURCES := source source/fatfs source/sxos
|
|
DATA := data
|
|
INCLUDES := include
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# options for code generation
|
|
#---------------------------------------------------------------------------------
|
|
ARCH := -march=armv8-a+crc+crypto -mtune=cortex-a57 -mtp=soft -fPIC -ftls-model=local-exec
|
|
|
|
CFLAGS := -g -Wall -Wextra -Werror -Wno-implicit-fallthrough -Wno-unused-function -ffunction-sections -fdata-sections $(ARCH) $(BUILD_CFLAGS) $(INCLUDE)
|
|
CFLAGS += -DLIB_TITLE=\"lib$(TARGET)\"
|
|
|
|
CXXFLAGS := $(CFLAGS) -fno-rtti -fno-exceptions
|
|
|
|
ASFLAGS := -g $(ARCH)
|
|
|
|
ifeq ($(filter $(MAKECMDGOALS),clean dist-src fs-libs),)
|
|
# Check BUILD_TYPE flag
|
|
ifneq ($(origin BUILD_TYPE),undefined)
|
|
ifeq (${BUILD_TYPE},ISC)
|
|
# Do nothing
|
|
else
|
|
ifeq (${BUILD_TYPE},GPL)
|
|
# Update sources, set GPL_BUILD definition
|
|
# We'll just assume the user has already installed the necessary libraries
|
|
SOURCES += source/ntfs-3g source/lwext4
|
|
CFLAGS += -DGPL_BUILD
|
|
else
|
|
$(error Invalid value for BUILD_TYPE flag. Expected ISC or GPL)
|
|
endif
|
|
endif
|
|
else
|
|
$(error BUILD_TYPE flag not set)
|
|
endif
|
|
endif
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# list of directories containing libraries, this must be the top level containing
|
|
# include and lib
|
|
#---------------------------------------------------------------------------------
|
|
LIBDIRS := $(PORTLIBS) $(LIBNX)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# no real need to edit anything past this point unless you need to add additional
|
|
# rules for different file extensions
|
|
#---------------------------------------------------------------------------------
|
|
ifneq ($(BUILD),$(notdir $(CURDIR)))
|
|
#---------------------------------------------------------------------------------
|
|
|
|
export VPATH := $(foreach dir,$(SOURCES),$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(DATA),$(CURDIR)/$(dir))
|
|
|
|
CFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.c)))
|
|
CPPFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.cpp)))
|
|
SFILES := $(foreach dir,$(SOURCES),$(notdir $(wildcard $(dir)/*.s)))
|
|
BINFILES := $(foreach dir,$(DATA),$(notdir $(wildcard $(dir)/*.*)))
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# use CXX for linking C++ projects, CC for standard C
|
|
#---------------------------------------------------------------------------------
|
|
ifeq ($(strip $(CPPFILES)),)
|
|
#---------------------------------------------------------------------------------
|
|
export LD := $(CC)
|
|
#---------------------------------------------------------------------------------
|
|
else
|
|
#---------------------------------------------------------------------------------
|
|
export LD := $(CXX)
|
|
#---------------------------------------------------------------------------------
|
|
endif
|
|
#---------------------------------------------------------------------------------
|
|
|
|
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 := $(addsuffix .h,$(subst .,_,$(BINFILES)))
|
|
|
|
export INCLUDE := $(foreach dir,$(INCLUDES),-I$(CURDIR)/$(dir)) \
|
|
$(foreach dir,$(LIBDIRS),-I$(dir)/include) \
|
|
-I$(CURDIR)/$(BUILD)
|
|
|
|
.PHONY: clean all release release-dir debug debug-dir lib-dir example
|
|
|
|
#---------------------------------------------------------------------------------
|
|
LIB_BRANCH := $(shell git rev-parse --abbrev-ref HEAD)
|
|
LIB_HASH := $(shell git rev-parse --short HEAD)
|
|
LIB_REV := $(LIB_BRANCH)-$(LIB_HASH)
|
|
|
|
ifneq (, $(strip $(shell git status --porcelain 2>/dev/null)))
|
|
LIB_REV := $(LIB_REV)-dirty
|
|
endif
|
|
|
|
$(eval LIB_VERSION_MAJOR = $(shell grep 'define LIBUSBHSFS_VERSION_MAJOR\b' include/usbhsfs.h | tr -s [:blank:] | cut -d' ' -f3))
|
|
$(eval LIB_VERSION_MINOR = $(shell grep 'define LIBUSBHSFS_VERSION_MINOR\b' include/usbhsfs.h | tr -s [:blank:] | cut -d' ' -f3))
|
|
$(eval LIB_VERSION_MICRO = $(shell grep 'define LIBUSBHSFS_VERSION_MICRO\b' include/usbhsfs.h | tr -s [:blank:] | cut -d' ' -f3))
|
|
$(eval LIB_VERSION = $(LIB_VERSION_MAJOR).$(LIB_VERSION_MINOR).$(LIB_VERSION_MICRO)-$(LIB_REV))
|
|
|
|
ifeq (${BUILD_TYPE},ISC)
|
|
LIB_LICENSE := ISC
|
|
else
|
|
LIB_LICENSE := GPLv2
|
|
ifeq ($(MAKECMDGOALS),install)
|
|
lib/lib$(TARGET).a: fs-libs
|
|
lib/lib$(TARGET)d.a: fs-libs
|
|
endif
|
|
endif
|
|
|
|
all: release debug
|
|
|
|
release: lib/lib$(TARGET).a
|
|
|
|
release-dir:
|
|
@mkdir -p release
|
|
|
|
debug: lib/lib$(TARGET)d.a
|
|
|
|
debug-dir:
|
|
@mkdir -p debug
|
|
|
|
lib-dir:
|
|
@mkdir -p lib
|
|
|
|
example: all
|
|
@$(MAKE) BUILD_TYPE=${BUILD_TYPE} --no-print-directory -C example
|
|
|
|
fs-libs:
|
|
@echo Installing ntfs-3g
|
|
@$(MAKE) -C libntfs-3g
|
|
|
|
@echo Installing lwext4
|
|
@$(MAKE) -C liblwext4
|
|
|
|
lib/lib$(TARGET).a: release-dir lib-dir $(SOURCES) $(INCLUDES)
|
|
@echo release
|
|
@$(MAKE) BUILD=release OUTPUT=$(CURDIR)/$@ \
|
|
BUILD_CFLAGS="-DNDEBUG=1 -O2" \
|
|
DEPSDIR=$(CURDIR)/release \
|
|
--no-print-directory -C release \
|
|
-f $(CURDIR)/Makefile
|
|
|
|
lib/lib$(TARGET)d.a: debug-dir lib-dir $(SOURCES) $(INCLUDES)
|
|
@echo debug
|
|
@$(MAKE) BUILD=debug OUTPUT=$(CURDIR)/$@ \
|
|
BUILD_CFLAGS="-DDEBUG=1 -Og" \
|
|
DEPSDIR=$(CURDIR)/debug \
|
|
--no-print-directory -C debug \
|
|
-f $(CURDIR)/Makefile
|
|
|
|
dist-bin: example
|
|
@cp example/libusbhsfs-example.nro libusbhsfs-example.nro
|
|
@tar --exclude=*~ -cjf lib$(TARGET)_$(LIB_VERSION)_$(LIB_LICENSE).tar.bz2 include lib LICENSE_$(LIB_LICENSE).md README.md libusbhsfs-example.nro
|
|
@rm libusbhsfs-example.nro
|
|
|
|
clean:
|
|
@echo clean ...
|
|
@rm -fr release debug lib *.bz2
|
|
@$(MAKE) --no-print-directory -C example clean
|
|
|
|
dist-src:
|
|
@tar --exclude=*~ -cjf lib$(TARGET)_$(LIB_VERSION)-src.tar.bz2 \
|
|
--exclude='example/build' --exclude='example/*.elf' --exclude='example/*.nacp' --exclude='example/*.nro' \
|
|
--exclude='libntfs-3g/*.tgz' --exclude='libntfs-3g/*.tar.*' --exclude='libntfs-3g/pkg' --exclude='libntfs-3g/src' \
|
|
--exclude='liblwext4/*.zip' --exclude='liblwext4/*.tar.*' --exclude='liblwext4/pkg' --exclude='liblwext4/src' \
|
|
example include libntfs-3g liblwext4 source LICENSE_ISC.md LICENSE_GPLv2.md Makefile README.md
|
|
|
|
dist: dist-src dist-bin
|
|
|
|
install: dist-bin
|
|
@bzip2 -cd lib$(TARGET)_$(LIB_VERSION)_$(LIB_LICENSE).tar.bz2 | tar -xf - -C $(PORTLIBS) --exclude='*.md' --exclude='*.nro'
|
|
|
|
#---------------------------------------------------------------------------------
|
|
else
|
|
|
|
DEPENDS := $(OFILES:.o=.d)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
# main targets
|
|
#---------------------------------------------------------------------------------
|
|
$(OUTPUT) : $(OFILES)
|
|
|
|
$(OFILES_SRC) : $(HFILES)
|
|
|
|
#---------------------------------------------------------------------------------
|
|
%_bin.h %.bin.o : %.bin
|
|
#---------------------------------------------------------------------------------
|
|
@echo $(notdir $<)
|
|
@$(bin2o)
|
|
|
|
|
|
-include $(DEPENDS)
|
|
|
|
#---------------------------------------------------------------------------------------
|
|
endif
|
|
#---------------------------------------------------------------------------------------
|
|
|