mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
e7e157032b
This adds the basic make support required by https://github.com/cgwalters/build-api. CFLAGS, CXXFLAGS, DESTDIR variables are supported: ./configure CFLAGS=... CXXFLAGS=... && make && make install DESTDIR=
22 lines
337 B
Bash
Executable File
22 lines
337 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
cflags=CFLAGS="$CFLAGS"
|
|
cxxflags=CXXFLAGS="$CXXFLAGS"
|
|
declare -a args
|
|
j=0
|
|
for i in "$@"; do
|
|
case "$i" in
|
|
CFLAGS=*)
|
|
cflags="$i";;
|
|
CXXFLAGS=*)
|
|
cxxflags="$i";;
|
|
*)
|
|
args[$j]="$i"
|
|
j=$((j+1))
|
|
esac
|
|
done
|
|
|
|
export "$cflags" "$cxxflags"
|
|
set -x
|
|
exec meson build "${args[@]}"
|