summaryrefslogtreecommitdiff
path: root/tools/meson-apply-m4.sh
blob: 5fad8cd94fc46a6377a0bb01ae227f00542ed987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/sh
set -eu

CONFIG=$1
TARGET=$2

if [ $# -ne 2 ]; then
    echo 'Invalid number of arguments.'
    exit 1
fi

if [ ! -f $CONFIG ]; then
    echo "$CONFIG not found."
    exit 2
fi

if [ ! -f $TARGET ]; then
    echo "$TARGET not found."
    exit 3
fi

DEFINES=$(awk '$1 == "#define" && $3 == "1" { printf "-D%s ", $2 }' $CONFIG)

m4 -P $DEFINES $TARGET