diff.py: invoke make with DISABLE_DEPS

This commit is contained in:
Jcw87 2023-01-06 18:50:13 -08:00
parent 2112d5d992
commit df2391faa7
1 changed files with 3 additions and 1 deletions

View File

@ -10,7 +10,9 @@ def apply(config, args):
config['expected_build_dir'] = 'expected/build/'
config['myimg'] = 'build/dolzel2/main.elf'
config['baseimg'] = 'expected/build/dolzel2/main.elf'
config['makeflags'] = []
config['makeflags'] = [
'DISABLE_DEPS=1',
]
if args.show_source:
config['makeflags'].append('DEBUG=1')
config['source_directories'] = ['src', 'libs', 'include']