Zack Buhman da49dbeb2b Makefile: improve build rules slightly
I'm still not satisfied with the Makefile, but this at least makes it
converge in a single make invocation again.

This also removes the enum value arrays.
2023-07-26 18:17:45 +00:00

9 lines
159 B
Python

import sys
from pathlib import Path
from generate.files import files
base_path = Path(sys.argv[1])
for _, filename in files:
print(base_path / filename)