#!/bin/sh

lib=$1
shift

rm -f $lib lib.lst

ls -1 $* | sed -e "s/\\//\\\\/g" -e "s/^/+\ /" -e "s/$/\ \&/" >> lib.lst
echo ", tlib" >> lib.lst

tlib /C /P1024  $lib @lib.lst

rm -f tlib.LST

