mirror of
https://github.com/sonicdcer/sf64.git
synced 2024-11-23 21:09:56 +00:00
9 lines
351 B
Python
9 lines
351 B
Python
#!/usr/bin/env python3
|
|
|
|
def apply(config, args):
|
|
config['baseimg'] = 'baserom.us.z64'
|
|
config['myimg'] = 'build/starfox64.us.uncompressed.z64'
|
|
config['mapfile'] = 'build/starfox64.us.map'
|
|
config['source_directories'] = ['./src','./include']
|
|
config['objdump_flags'] = ['-M','reg-names=32']
|
|
config['makeflags'] = ["KEEP_MDEBUG=1"] |