2
Fork 0

Updated to lastest msxbuild

This commit is contained in:
Willem Cazander 2020-12-23 18:28:22 +01:00
parent 4e8ac97877
commit e29fd1b3d8
5 changed files with 12 additions and 6 deletions

View file

@ -7,18 +7,22 @@ INC_MODS := $(call rwildcard, src, */0module.mk)
INC_LIBS := $(call rwildcard, src, */0module.lib.mk)
PATH_BIN := bin
PATH_SRC := src
BUILD_HELP := "Use one of the following build targets;\\n\\t* clean"
BUILD_ALL := "Use 'make help' for possible targets."
BUILD_HELP := "Use one of the following build targets;"
MB_OPENMSX_EXTS += -ext video9000
MB_OPENMSX_JOYPORTA := mouse
.SUFFIXES:
.PHONY: all
all:
@echo $(BUILD_HELP)
@echo $(BUILD_ALL)
BUILD_HELP += \\n\\t* help
.PHONY: help
help:
@echo $(BUILD_HELP)
BUILD_HELP += \\n\\t* clean
.PHONY: clean
clean:
$(call mb_clean,$(PATH_BIN))