msxbuild/Makefile
Willem Cazander 230331d9a5
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
Cleanup of path variables.
2024-06-25 15:57:13 +02:00

26 lines
565 B
Makefile

rwildcard = $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
INC_TEST := $(call rwildcard, test, */0module.mk)
PATH_BIN := bin
BUILD_ALL := "Use 'make help' for possible targets."
BUILD_HELP := "Use one of the following build targets;"
.SUFFIXES:
.PHONY: all
all:
@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))
MB_OPENMSX_PATH_BIN ?= $(PATH_BIN)
include lib/make/msxbuild.mk
include $(INC_TEST)