msxbuild/Makefile
Willem Cazander 9a545d3c3a
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
Search module only in src.
2024-07-05 23:32:01 +02:00

19 lines
333 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
include lib/make/msxbuild.mk
$(eval $(call mb_make_call,mb_doc_flow_help))
$(eval $(call mb_make_call,mb_make_flow_0module,$(PATH_SRC)))