The following modules are currently included:
To use a module, it is recommended to add the following boilerplate to your makefile:
# Include DMBS build script makefiles
DMBS_PATH ?= ../DMBS
Which can then used to indicate the location of your DMBS installation, relative to the current directory, when importing modules. For example:
DMBS_PATH ?= ../DMBS
include $(DMBS_PATH)/core.mk
include $(DMBS_PATH)/gcc.mk
Imports the CORE and GCC modules from DMBS using a single path relative to
your project's makefile.
If you wish to write your own DMBS module(s), see the documentation here for more details.