#!/bin/csh -f

echo "LOCAL OBJECTS"

if ( -e .objects ) then
  /data/globec/bin/readdct2 < .objects
endif
echo ""

echo "SYSTEM SUBDIRECTORIES ($OBJECT_PATH$1)"
echo "../"
cd $OBJECT_PATH$1
ls -F | grep "/"
echo ""

echo "SYSTEM OBJECTS"

if ( -e .remoteobjects ) then
  /data/globec/bin/readdct2 < .remoteobjects
endif
