6 lines
251 B
Perl
6 lines
251 B
Perl
add_cus_dep('glo', 'gls', 0, 'makeglo2gls');
|
|
sub makeglo2gls {
|
|
system("makeindex -s '$_[0]'.ist -t '$_[0]'.glg -o '$_[0]'.gls '$_[0]'.glo");
|
|
}
|
|
|
|
$clean_ext .= '%R.aux %R.dvi %R.log %R.out %R.glg %R.gls %R.ist %R.bbl %R.tcbtemp %R.lol %R.glo tex~';
|