#! /bin/sh
# ======================================================================
#  $Id: defineobjects,v 1.1.1.1 2003/06/27 02:56:41 goiwai Exp $
#  $Name: CLDAQ-1-06-02 $
# ======================================================================
objects=""
dir="$1"
shift
for cc in $*; do
    tmp=${cc%%.cc}
    if [ "$objects" = "" ]; then
	objects="$dir/$tmp/exe/$tmp.o"
    else
	objects="$objects $dir/$tmp/exe/$tmp.o"
    fi
done
echo "$objects"
exit 0
