Added project phases and flow generators.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -1s
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -1s
This commit is contained in:
parent
51a3276e39
commit
f7324721c2
29 changed files with 606 additions and 287 deletions
24
Makefile
24
Makefile
|
|
@ -1,6 +1,9 @@
|
|||
#
|
||||
# Module based project makefile for msxbuild.
|
||||
#
|
||||
|
||||
|
||||
# Configure make
|
||||
.SUFFIXES:
|
||||
.PHONY: Makefile
|
||||
ifndef VERBOSE
|
||||
|
|
@ -10,10 +13,31 @@ ifeq ($(.DEFAULT_GOAL),)
|
|||
.DEFAULT_GOAL := @help
|
||||
endif
|
||||
|
||||
|
||||
# Configure project
|
||||
-include Makelocal.mk
|
||||
PATH_BIN := bin
|
||||
PATH_SRC := src
|
||||
PATH_MSXBUILD ?= .
|
||||
|
||||
|
||||
# Generate project flow
|
||||
include $(PATH_MSXBUILD)/lib/make/msxbuild.mk
|
||||
$(call mb_make_call_eval,mb_doc_flow_help,MSXBUILD-Example)
|
||||
$(call mb_make_call_eval,mb_make_flow_0module,$(PATH_SRC))
|
||||
$(call mb_make_call_eval,mb_proj_flow_setup,$(PATH_BIN))
|
||||
$(call mb_make_call_eval,mb_proj_flow_flight_video,$(PATH_BIN))
|
||||
|
||||
|
||||
# Add japanese support
|
||||
ifdef LANG_JP
|
||||
MB_MAKE_ECHO_CRAYON = "©Δ∞ 仙上主天"
|
||||
MB_PROJ_META_NAME = "メッカシステム拡大建てる"
|
||||
MB_PROJ_STEP_BEFORE_PREFIX = "フェーズ前 "
|
||||
MB_PROJ_STEP_AFTER_PREFIX = "フェーズ後 "
|
||||
MB_PROJ_STEP_DONE_PREFIX = "プライムパイターゲットの実行を終了しました "
|
||||
MB_OPENMSX_LOG_PREFIX = "オープンメッカシステム拡張を開始しましょう!のために"
|
||||
MB_AUTOEXEC_LOG_PREFIX = "自動実行の書き込み"
|
||||
$(call mb_make_call_eval,mb_proj_flow_setup_jp)
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue