From 8de2845d872e9c6713512baaae35a80a747c4611 Mon Sep 17 00:00:00 2001 From: Willem Date: Wed, 3 Jul 2024 00:23:45 +0200 Subject: [PATCH] Updated make functions. --- Makefile | 2 +- src/dist-run/0module.mk | 3 +-- src/tara/0module.mk | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 2e0b50e..d935b9d 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ PATH_BIN := bin PATH_SRC := src BUILD_ALL := "Use 'make help' for possible targets." BUILD_HELP := "Use one of the following build targets;" -MB_OPENMSX_EXTS += -ext video9000 +MB_OPENMSX_ARGS += -ext video9000 .SUFFIXES: .PHONY: all diff --git a/src/dist-run/0module.mk b/src/dist-run/0module.mk index fc1b563..167bb92 100644 --- a/src/dist-run/0module.mk +++ b/src/dist-run/0module.mk @@ -13,5 +13,4 @@ $(DIST_RUN_DEP): $(DIST_RUN_DEP_TAR) | $(DIST_RUN_BIN) $(call mb_copy,$(PATH_BIN)/dist/*,$(DIST_RUN_BIN)) $(DIST_RUN_NAME): $(DIST_RUN_DEP) - $(call mb_autoexec_show_gui80_mouse,$(DIST_RUN_BIN),tara) - $(call mb_openmsx_dosctl,$(DIST_RUN_BIN)) + $(call mb_msxpipe_run_gui_mouse,$(DIST_RUN_BIN),tara) diff --git a/src/tara/0module.mk b/src/tara/0module.mk index 29f4654..48eeaee 100644 --- a/src/tara/0module.mk +++ b/src/tara/0module.mk @@ -15,7 +15,7 @@ $(TARA_BIN)/%.rel: $(TARA_SRC)/%.asm | $(TARA_BIN) $(call mb_sdcc_compile_asm,$<,$@) $(TARA_HEX): $(TARA_RELS) - $(call mb_sdcc_link_asm_dos,$<,$@) + $(call mb_sdcc_link_asm_bdos,$<,$@) $(TARA_COM): $(TARA_HEX) $(call mb_sdcc_hex2bin,$<,$@)