Removed unused `/dw3/DUMMY` .gitattribute entry. `dw3` decompilation will be added later.
13 lines
278 B
Python
Executable File
13 lines
278 B
Python
Executable File
#!/bin/env python3
|
|
|
|
import xml.etree.ElementTree as ET
|
|
|
|
# Parse the xml file
|
|
tree = ET.parse('dw2003-bin.xml')
|
|
root = tree.getroot()
|
|
files = list(root.iter("file"))
|
|
files = map(lambda file: file.get("source"), files)
|
|
files = ' '.join(files)
|
|
|
|
print(f"build/dw2003.bin: {files}")
|