blob: 76d73ea8e772b16f04713d6077f4d56ee045d56f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/sh
# =====================================================================
# filename: mach
# description: make wrapper used to run build.mk
# To use, add the relative path to this script as a
# shebang in build.mk and make it executable.
# spdx-license-identifier: ISC
# =====================================================================
if [[ $1 != "./build.mk" ]]
then
echo "Run from subdir"
exit 1
fi
# remove ./build.mk from args
ARGS=${@:2}
# root.mk should be next to this script
ROOT=`dirname $0`
make --silent -f ${ROOT}/root.mk -C ${PWD} ${ARGS}
|