Willem Cazander
f36aae1917
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s
20 lines
369 B
Makefile
20 lines
369 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
|
|
$(eval $(call mb_make_call,mb_doc_flow_help))
|
|
$(eval $(call mb_make_call,mb_make_flow_0module,$(PATH_SRC)))
|
|
|