Willem Cazander
a71f283d1d
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
19 lines
321 B
Makefile
19 lines
321 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))
|
|
|