-
Notifications
You must be signed in to change notification settings - Fork 67
/
mfc.sh
executable file
·67 lines (50 loc) · 1.83 KB
/
mfc.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/bin/bash
# Check whether this script was called from MFC's root directory.
if [ ! -f "$(pwd)/toolchain/util.sh" ]; then
echo "mfc: ERROR > You must call this script from within MFC's root folder."
exit 1
fi
# Load utility script
. "$(pwd)/toolchain/util.sh"
# Handle upgrading from older MFC build systems
if [ -d "$(pwd)/bootstrap" ] || [ -d "$(pwd)/dependencies" ] || [ -f "$(pwd)/build/mfc.lock.yaml" ]; then
error "Please remove, if applicable, the following directories:"
error "* dependencies/"
error "* bootstrap/"
error "* build/"
error "These are incompatible with modern versions of MFC."
exit 1
fi
# If the user wishes to run the "load" script
if [ "$1" '==' 'load' ]; then
shift; . "$(pwd)/toolchain/bootstrap/modules.sh" $@; return
elif [ "$1" '==' "lint" ]; then
. "$(pwd)/toolchain/bootstrap/python.sh"
shift; . "$(pwd)/toolchain/bootstrap/lint.sh" $@; exit 0
elif [ "$1" '==' "format" ]; then
. "$(pwd)/toolchain/bootstrap/python.sh"
shift; . "$(pwd)/toolchain/bootstrap/format.sh" $@; exit 0
elif [ "$1" '==' "venv" ]; then
shift; . "$(pwd)/toolchain/bootstrap/python.sh" $@; return
elif [ "$1" '==' "clean" ]; then
rm -rf "$(pwd)/build"; exit 0
elif [ "$1" '==' "spelling" ]; then
. "$(pwd)/toolchain/bootstrap/python.sh"
shift; . "$(pwd)/toolchain/bootstrap/spelling.sh" $@; exit 0
fi
mkdir -p "$(pwd)/build"
. "$(pwd)/toolchain/bootstrap/cmake.sh"
. "$(pwd)/toolchain/bootstrap/python.sh"
echo
# Run the main.py bootstrap script
python3 "$(pwd)/toolchain/main.py" "$@"
code=$?
echo
if [ $code -ne 0 ]; then
error "main.py finished with a $code exit code."
fi
# Deactivate the Python virtualenv in case the user "source"'d this script
log "(venv) Exiting the$MAGENTA Python$COLOR_RESET virtual environment."
deactivate
# Exit with proper exit code
exit $code