#!/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 /Library/TeX/texbin  /usr/texbin /usr/local/bin)
makeindex -c -s german.ist "$1.idx"
