msxbuild/Makefile
Willem Cazander c1a52773ac
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -8s
Added flight recorder and more boot messages.
2024-06-29 15:47:52 +02:00

25 lines
530 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))
include lib/make/msxbuild.mk
include $(INC_TEST)