26 lines
874 B
Makefile
26 lines
874 B
Makefile
|
|
|
||
|
|
DIST_QA_DOS1 := $(PATH_BIN)/dist-qa-dos1
|
||
|
|
DIST_QA_DOS1_DEPS := $(subst dist,dist-qa-dos1,$(DIST_DEPS))
|
||
|
|
BUILD_HELP += \\n\\t* dist-qa-dos1-run\\n\\t* dist-qa-dos1-assert
|
||
|
|
|
||
|
|
$(DIST_QA_DOS1):
|
||
|
|
$(call mb_mkdir,$(DIST_QA_DOS1))
|
||
|
|
$(call mb_msxhub_get_dos1_boot,$(DIST_QA_DOS1))
|
||
|
|
|
||
|
|
$(DIST_QA_DOS1)/%: bin/dist/% | $(DIST_QA_DOS1) $(DIST_DEPS)
|
||
|
|
$(call mb_copy,$<,$@)
|
||
|
|
|
||
|
|
.PHONY: dist-qa-dos1-run
|
||
|
|
dist-qa-dos1-run: | $(DIST_QA_DOS1_DEPS)
|
||
|
|
$(call mb_autoexec_show_gui80,$(DIST_QA_DOS1))
|
||
|
|
$(call mb_openmsx_dosctl,$(DIST_QA_DOS1))
|
||
|
|
|
||
|
|
.PHONY: dist-qa-dos1-assert
|
||
|
|
dist-qa-dos1-assert: | $(DIST_QA_DOS1_DEPS)
|
||
|
|
$(call mb_autoexec_write_default,$(DIST_QA_DOS1))
|
||
|
|
$(call mb_autoexec_append_safe_test,$(DIST_QA_DOS1),ahello1)
|
||
|
|
$(call mb_autoexec_append_safe_test,$(DIST_QA_DOS1),ahello2)
|
||
|
|
$(call mb_autoexec_append_exit,$(DIST_QA_DOS1))
|
||
|
|
$(call mb_openmsx_dosctl,$(DIST_QA_DOS1))
|
||
|
|
|