msxbuild/Makefile
Willem Cazander e3b9df25e9
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -1s
Implemented mb_make_call_eval function.
2024-07-06 13:10:46 +02:00

20 lines
380 B
Makefile

#
# Module based project makefile for msxbuild.
#
.SUFFIXES:
.PHONY: Makefile
ifndef VERBOSE
.SILENT:
endif
ifeq ($(.DEFAULT_GOAL),)
.DEFAULT_GOAL := @help
endif
PATH_BIN := bin
PATH_SRC := src
PATH_MSXBUILD ?= .
include $(PATH_MSXBUILD)/lib/make/msxbuild.mk
$(call mb_make_call_eval,mb_doc_flow_help,MSXBUILD-Example)
$(call mb_make_call_eval,mb_make_flow_0module,$(PATH_SRC))