Converted local project to demo structure.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -8s

This commit is contained in:
Willem Cazander 2024-06-30 02:42:42 +02:00
parent fd67884bee
commit 56e74ee085
21 changed files with 257 additions and 249 deletions

View file

@ -1,7 +1,11 @@
#
# Example project makefile for msxbuild.
#
rwildcard = $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
INC_TEST := $(call rwildcard, test, */0module.mk)
PATH_BIN := bin
PATH_SRC := src
rwildcard = $(foreach d,$(wildcard $1*),$(call rwildcard,$d/,$2) $(filter $(subst *,%,$2),$d))
MK_MODULES := $(call rwildcard, src, */0module.mk)
BUILD_ALL := "Use 'make help' for possible targets."
BUILD_HELP := "Use one of the following build targets;"
@ -21,4 +25,4 @@ clean:
$(call mb_clean,$(PATH_BIN))
include lib/make/msxbuild.mk
include $(INC_TEST)
include $(MK_MODULES)