mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
25 lines
384 B
Bash
Executable File
25 lines
384 B
Bash
Executable File
#!/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
|