mirror of https://github.com/zeldaret/mm.git
ASM_PROC_FORCE (#1362)
This commit is contained in:
parent
108b482ad0
commit
cbf9d98dba
6
Makefile
6
Makefile
|
|
@ -23,6 +23,8 @@ FULL_DISASM ?= 0
|
|||
RUN_CC_CHECK ?= 1
|
||||
# Dump build object files
|
||||
OBJDUMP_BUILD ?= 0
|
||||
# Force asm processor to run on every file
|
||||
ASM_PROC_FORCE ?= 0
|
||||
# Number of threads to disassmble, extract, and compress with
|
||||
N_THREADS ?= $(shell nproc)
|
||||
|
||||
|
|
@ -92,6 +94,10 @@ ASM_PROC := python3 tools/asm-processor/build.py
|
|||
|
||||
ASM_PROC_FLAGS := --input-enc=utf-8 --output-enc=euc-jp --convert-statics=global-with-filename
|
||||
|
||||
ifneq ($(ASM_PROC_FORCE), 0)
|
||||
ASM_PROC_FLAGS += --force
|
||||
endif
|
||||
|
||||
IINC := -Iinclude -Isrc -Iassets -Ibuild -I.
|
||||
|
||||
ifeq ($(KEEP_MDEBUG),0)
|
||||
|
|
|
|||
Loading…
Reference in New Issue