nrf/Makefile: Set default manifest file for all targets.

Set the default manifest to "modules/manifest.py".  This includes files
from the folder "modules/scripts".  The manifest default value is overriden
by all nrf51 boards that have SoftDevice present (SD=s110) to save flash.

Also add "modules/manifest.py" which is set to freeze
"modules/scripts/_mkfs.py".
This commit is contained in:
Glenn Ruben Bakke 2020-07-23 23:12:51 +02:00 committed by Damien George
parent 7b6ad0ce2e
commit aa857eb65e
2 changed files with 3 additions and 0 deletions

View File

@ -52,6 +52,8 @@ ifeq ($(DEBUG), 0)
MICROPY_ROM_TEXT_COMPRESSION ?= 1 MICROPY_ROM_TEXT_COMPRESSION ?= 1
endif endif
FROZEN_MANIFEST ?= modules/manifest.py
# include py core make definitions # include py core make definitions
include ../../py/py.mk include ../../py/py.mk

View File

@ -0,0 +1 @@
freeze("$(PORT_DIR)/modules/scripts", "_mkfs.py")