2
0
Fork 0

Updated make functions.

This commit is contained in:
Willem Cazander 2024-07-03 00:23:45 +02:00
parent fecef72e30
commit 8de2845d87
3 changed files with 3 additions and 4 deletions

View file

@ -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

View file

@ -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)

View file

@ -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,$<,$@)