Test the full matrix in japanse.
Some checks failed
Run test asserts / Test-Asserts (push) Failing after 1s
Some checks failed
Run test asserts / Test-Asserts (push) Failing after 1s
This commit is contained in:
parent
da0f1c4614
commit
1c6954e475
19 changed files with 62 additions and 5 deletions
|
|
@ -22,7 +22,7 @@ define mb_flight_video_merge
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg1,mb_flight_video_merge,$(1))
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_os_echo_command,Indexing flight videos)
|
||||
$(MB_ᕽᕽᕽ )find $(1) -type f -name '*.avi' -printf '%T@ %Tc %p\n' | sort -n | awk -F "$(1)/" -v s="file '" -v e="'" '{print s$$2e}' > $(1)/$(MB_FLIGHT_VIDEO_NAME).lst
|
||||
$(MB_ᕽᕽᕽ )ffmpeg -v quiet -y -f concat -i $(1)/$(MB_FLIGHT_VIDEO_NAME).lst -c copy $(1)/$(MB_FLIGHT_VIDEO_NAME).avi
|
||||
$(MB_ᕽᕽᕽ )ffmpeg -v quiet -y -f concat -safe 0 -i $(1)/$(MB_FLIGHT_VIDEO_NAME).lst -c copy $(1)/$(MB_FLIGHT_VIDEO_NAME).avi
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_os_echo_remark,Flight video completed)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function,mb_flight_video_merge,"Merged all flight videos to one.","<dir>")
|
||||
|
|
|
|||
|
|
@ -6,6 +6,15 @@ $(call mb_make_call,mb_doc_variable_deep,MB_MSXROM_API,"Resource identifier for
|
|||
MB_MSXROM_CACHE ?= $(MB_OS_CACHE)/msxbuild/msxrom
|
||||
$(call mb_make_call,mb_doc_variable_deep,MB_MSXROM_CACHE,"Cache storage location.")
|
||||
|
||||
MB_MSXROM_FIRE_MACHINES ?=
|
||||
$(call mb_make_call,mb_doc_variable_flow,MB_MSXROM_FIRE_MACHINES,"List of supported machines.")
|
||||
|
||||
|
||||
define _mb_msxrom_grow_fire_machines
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg1,$(0),$(1))
|
||||
$(MB_ᕽᕽᕽ )$(eval MB_MSXROM_FIRE_MACHINES $(MB_MAKE_APPEND) $(1))
|
||||
endef
|
||||
|
||||
|
||||
define _mb_msxrom_file_fetch
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_os_echo_command,$(MB_I18N_MSXROM_FILE_FETCH) $(subst $(MB_MSXROM_API)/,,$(1)))
|
||||
|
|
@ -89,18 +98,21 @@ define mb_msxrom_machine_Canon_V-20
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/canon/v-20_basic-bios1.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Canon_V-20,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Canon_V-20)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Mitsubishi_ML-F80
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/mitsubishi/ml-f80_basic-bios1.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Mitsubishi_ML-F80,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Mitsubishi_ML-F80)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Mitsubishi_ML-FX1
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/mitsubishi/ml-fx1_basic-bios1.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Mitsubishi_ML-FX1,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Mitsubishi_ML-FX1)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Mitsubishi_ML-G3_ES
|
||||
|
|
@ -110,12 +122,14 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/mitsubishi/ml-g3_es_rs232.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Mitsubishi_ML-G3_ES,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Mitsubishi_ML-G3_ES)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Philips_VG_8000
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/philips/vg8000_basic-bios1.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Philips_VG_8000,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Philips_VG_8000)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Philips_VG_8230
|
||||
|
|
@ -124,6 +138,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/philips/vg8230_msx2sub.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Philips_VG_8230,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Philips_VG_8230)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Philips_NMS_8250
|
||||
|
|
@ -132,6 +147,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/philips/nms8250_disk.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Philips_NMS_8250,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Philips_NMS_8250)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Toshiba_HX-21
|
||||
|
|
@ -139,6 +155,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/toshiba/HX21-IC3.BIN)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Toshiba_HX-21,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Toshiba_HX-21)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Yamaha_AX200
|
||||
|
|
@ -147,6 +164,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/yamaha/ax200_music.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Yamaha_AX200,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Yamaha_AX200)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Yamaha_YIS-503IIIR
|
||||
|
|
@ -156,6 +174,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/yamaha/yis503iii_net_2.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Yamaha_YIS-503IIIR,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Yamaha_YIS-503IIIR)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Panasonic_FS-A1WSX
|
||||
|
|
@ -168,6 +187,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notd
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_file,$(1)$(MB_@WORK)$(notdir $(1))/share/systemroms/machines,machines/panasonic/fs-a1wsx_msx2psub.rom)
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Panasonic_FS-A1WSX,"Installs machine roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Panasonic_FS-A1WSX)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Boosted_MSX2_EN
|
||||
|
|
@ -177,6 +197,7 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_extension_moonsound,$(1))
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_extension_basickun,$(1))
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Boosted_MSX2_EN,"Installs machine and extensions roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Boosted_MSX2_EN)
|
||||
|
||||
|
||||
define mb_msxrom_machine_Boosted_MSX2+_JP
|
||||
|
|
@ -185,4 +206,6 @@ $(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_extension_moonsound,$(1))
|
|||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_msxrom_extension_basickun,$(1))
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_deep,mb_msxrom_machine_Boosted_MSX2+_JP,"Installs machine and extensions roms.","<dir>")
|
||||
$(call mb_make_call,_mb_msxrom_grow_fire_machines,Boosted_MSX2+_JP)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,14 @@ endef
|
|||
define mb_flow_0module_setup
|
||||
$(MB_ᕽᕽᕽ )$(call mb_make_call,mb_make_check_arg1,$(0),$(1))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module000.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module001.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module010.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module011.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module100.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module101.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module110.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
$(MB_ᕽᕽᕽ )$(foreach _mod,$(call mb_make_call,mb_make_wildcard_treewalker,$(1),*/0module111.mk),$(eval $(call mb_make_call,__$(0),$(_mod))))
|
||||
endef
|
||||
$(call mb_make_call,mb_doc_function_flow,mb_flow_0module_setup,"Inject flow of recursive 0module.mk include.","<dir>")
|
||||
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ endef
|
|||
define __mb_flow_assert_msxpipe_grep_x
|
||||
.RECIPEPREFIX := $(MB_@RECIPE)
|
||||
|
||||
$(1)/@@$(5)-deps:: $(1)/@assert/$(5)/$(2)
|
||||
$(1)/@$(5)-deps:: $(1)/@assert/$(5)/$(2)
|
||||
$(7)/@@init-deps:: $(1)/@build
|
||||
|
||||
$(1)/@assert/$(5)/$(2): $(7)/@build
|
||||
|
|
|
|||
|
|
@ -86,6 +86,12 @@ $(MB_@RECIPE)@echo -e $$(MB_DOC_FIRE_TARGET_ASSERT)
|
|||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_doc_target_help,@help-target-assert,"Lists assert targets.")
|
||||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_make_target_phony,@help-target-assert)
|
||||
|
||||
@help-machine:
|
||||
$(MB_@RECIPE)@echo -e "Use one of the following machines to build targets;"
|
||||
$(MB_@RECIPE)@echo -e "\n "$(foreach _rom,$(MB_MSXROM_FIRE_MACHINES)," * $(_rom)\n")
|
||||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_doc_target_help,@help-machine,"Lists supported machines.")
|
||||
$(MB_ᕽᕽᕽ )$$(call mb_make_call,mb_make_target_phony,@help-machine)
|
||||
|
||||
@help-all:
|
||||
$(MB_@RECIPE)@echo -e "Documention of all fire functions/variables/targets;\\n"
|
||||
$(MB_@RECIPE)$$(call mb_make_call,mb_os_echo_good,"Variables")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue