Converted local project to demo structure.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -8s
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -8s
This commit is contained in:
parent
fd67884bee
commit
56e74ee085
21 changed files with 257 additions and 249 deletions
10
Makefile
10
Makefile
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue