Fixed openMSX export and WIP adding first flow generators.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in 0s

This commit is contained in:
Willem Cazander 2024-07-05 20:43:18 +02:00
parent 9a0b0cbdb2
commit a71f283d1d
29 changed files with 703 additions and 415 deletions

View file

@ -1,13 +1,18 @@
#
# Example project makefile for msxbuild.
# Module based project makefile for msxbuild.
#
.SUFFIXES:
PATH_BIN := bin
PATH_SRC := src
all:
$(call mb_doc_show_help@all)
.PHONY: all
.PHONY: Makefile
ifndef VERBOSE
.SILENT:
endif
ifeq ($(.DEFAULT_GOAL),)
.DEFAULT_GOAL := @help
endif
PATH_BIN := bin
PATH_SRC := src
include lib/make/msxbuild.mk
include $(call mb_rwildcard, $(PATH_SRC), */0module.mk)
$(eval $(call mb_make_call,mb_doc_flow_help))
$(eval $(call mb_make_call,mb_make_flow_0module))