blob: 1634f0cb82caca6dd50cfbaf0d98e2f084976411 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
# Read extra targets from an optional configuration file
conf=${XDG_CONFIG_HOME:-"$HOME"/.config}/dotfiles/config
if [ -e "$conf" ] ; then
while read -r line ; do
case $line in
'#'*|'') ;;
*) set -- "$@" "$line" ;;
esac
done < $conf
fi
make install "$@"
|