diff options
Diffstat (limited to 'compile_meson.py')
-rwxr-xr-x | compile_meson.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/compile_meson.py b/compile_meson.py new file mode 100755 index 0000000..79b949b --- /dev/null +++ b/compile_meson.py @@ -0,0 +1,13 @@ +#!/usr/bin/python3 -tt + +# This file generates all files needed to run +# Meson. It does the equivalent of "make" in +# standard build systems. + +import os +import mparser + +fullfile = os.path.abspath(__file__) +fulldir = os.path.dirname(fullfile) + +mparser.generate_parser_files(fulldir) |