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