1#! /bin/sh
2t=$1; shift
3if test -n "$t"; then
4  L=-Wl
5  for c in "$@"; do
6    L=$L,"$c"
7  done;
8  echo $L
9else
10  echo "$@"
11fi
12