sksp2024-mcu/libucw/build/lib-flags
2024-09-14 21:50:33 +02:00

24 lines
465 B
Bash
Executable file

#!/bin/bash
#
# A preprocessor for linker arguments, which replaces references to .pc
# files by results of the proper calls to pkg-config.
#
# (c) 2007 Martin Mares <mj@ucw.cz>, placed under GNU LGPL
#
set -e
PC=
while [ -n "$1" ] ; do
case "$1" in
*.pc) PC="$PC `basename $1 .pc`"
;;
*) echo -n " $1"
;;
esac
shift
done
if [ -n "$PC" ] ; then
echo -n " "
PKG_CONFIG_PATH="$PKG_CONFIG_PATH:obj/pkgconfig" pkg-config $PKG_CONFIG_OPTS --libs $PC
fi