Update buildtools.
This commit is contained in:
28
Makefile
28
Makefile
@@ -3,14 +3,10 @@
|
|||||||
TARGET := NATIVE
|
TARGET := NATIVE
|
||||||
LIBRARY := 0
|
LIBRARY := 0
|
||||||
|
|
||||||
ifeq ($(TARGET),3DS)
|
ifeq ($(TARGET),$(filter $(TARGET),3DS WIIU))
|
||||||
ifeq ($(strip $(DEVKITPRO)),)
|
ifeq ($(strip $(DEVKITPRO)),)
|
||||||
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
|
$(error "Please set DEVKITPRO in your environment. export DEVKITPRO=<path to>devkitPro")
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifeq ($(strip $(DEVKITARM)),)
|
|
||||||
$(error "Please set DEVKITARM in your environment. export DEVKITARM=<path to>devkitARM")
|
|
||||||
endif
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# COMMON CONFIGURATION #
|
# COMMON CONFIGURATION #
|
||||||
@@ -28,25 +24,15 @@ LIBRARY_DIRS :=
|
|||||||
LIBRARIES :=
|
LIBRARIES :=
|
||||||
|
|
||||||
BUILD_FLAGS := -Wno-unused-result -Wno-sign-compare -Wno-misleading-indentation -Wno-unused-function
|
BUILD_FLAGS := -Wno-unused-result -Wno-sign-compare -Wno-misleading-indentation -Wno-unused-function
|
||||||
|
BUILD_FLAGS_CC :=
|
||||||
|
BUILD_FLAGS_CXX :=
|
||||||
RUN_FLAGS :=
|
RUN_FLAGS :=
|
||||||
|
|
||||||
# 3DS CONFIGURATION #
|
VERSION_PARTS := $(subst ., ,$(shell git describe --tags --abbrev=0))
|
||||||
|
|
||||||
TITLE := $(NAME)
|
VERSION_MAJOR := $(word 1, $(VERSION_PARTS))
|
||||||
DESCRIPTION :=
|
VERSION_MINOR := $(word 2, $(VERSION_PARTS))
|
||||||
AUTHOR :=
|
VERSION_MICRO := $(word 3, $(VERSION_PARTS))
|
||||||
PRODUCT_CODE :=
|
|
||||||
UNIQUE_ID :=
|
|
||||||
|
|
||||||
SYSTEM_MODE :=
|
|
||||||
SYSTEM_MODE_EXT :=
|
|
||||||
|
|
||||||
ICON_FLAGS :=
|
|
||||||
|
|
||||||
ROMFS_DIR :=
|
|
||||||
BANNER_AUDIO :=
|
|
||||||
BANNER_IMAGE :=
|
|
||||||
ICON :=
|
|
||||||
|
|
||||||
# INTERNAL #
|
# INTERNAL #
|
||||||
|
|
||||||
|
|||||||
Submodule buildtools updated: 2ef982ddbd...29ab2234e7
@@ -390,6 +390,7 @@ void cmd_print_commands() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void cmd_print_usage(const std::string& executedFrom) {
|
void cmd_print_usage(const std::string& executedFrom) {
|
||||||
|
printf("bannertool v%d.%d.%d\n", VERSION_MAJOR, VERSION_MINOR, VERSION_MICRO);
|
||||||
printf("Usage: %s <command> <args>\n", executedFrom.c_str());
|
printf("Usage: %s <command> <args>\n", executedFrom.c_str());
|
||||||
cmd_print_commands();
|
cmd_print_commands();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user