aboutsummaryrefslogtreecommitdiff
path: root/compile_meson.py
blob: 79b949bf358293087735498a626542e2b6f66805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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)