#!/bin/tcsh -f
#
if ( $#argv < 1) then
  echo "Usage: resynthesize_osu035 [options] <verilog_file> [<layout_file>]"
  echo "(add buffer networks and resythesize to OSU 0.35um library)"
  exit 1
endif
set curdir=`pwd`
if ( -d ${curdir}/scripts ) then
   setenv PATH "${curdir}/scripts:${PATH}"
   set scriptdir=${curdir}/scripts
else
   set scriptdir=${curdir}
endif
${scriptdir}/resynth_script.sh OSU035 $argv
