#!/bin/tcsh
# makeindexc
# Claus Gerhardt
#
# This script will produce one indices for  file.tex. Use it by calling
# makeindexc file (without the suffix)
# It can be used in any language

set path= ($path /usr/texbin /usr/local/bin)
makeindex -c  "$1.idx"
