2024-06-30 00:42:42 +00:00
|
|
|
#
|
2024-07-05 18:43:18 +00:00
|
|
|
# Module based project makefile for msxbuild.
|
2024-06-30 00:42:42 +00:00
|
|
|
#
|
2024-07-02 01:27:14 +00:00
|
|
|
.SUFFIXES:
|
2024-07-05 18:43:18 +00:00
|
|
|
.PHONY: Makefile
|
|
|
|
ifndef VERBOSE
|
|
|
|
.SILENT:
|
|
|
|
endif
|
|
|
|
ifeq ($(.DEFAULT_GOAL),)
|
|
|
|
.DEFAULT_GOAL := @help
|
|
|
|
endif
|
2020-12-23 17:14:13 +00:00
|
|
|
|
2024-07-05 18:43:18 +00:00
|
|
|
PATH_BIN := bin
|
|
|
|
PATH_SRC := src
|
2020-12-23 17:14:13 +00:00
|
|
|
include lib/make/msxbuild.mk
|
2024-07-05 18:43:18 +00:00
|
|
|
$(eval $(call mb_make_call,mb_doc_flow_help))
|
|
|
|
$(eval $(call mb_make_call,mb_make_flow_0module))
|
|
|
|
|