#! /bin/sh
# =============================================================================
#  $Id: defineobjects,v 1.1.1.1 2003/01/04 08:07:14 iwai Exp $
#  $Name:  $
# =============================================================================
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
