[latexmkrc] removed file due to no longer using lhs

This commit is contained in:
Afonso Franco 2025-02-05 17:04:14 +00:00
parent 4bc5ef2bdb
commit 7dac57412d
Signed by: afonso
SSH key fingerprint: SHA256:PQTRDHPH3yALEGtHXnXBp3Orfcn21pK20t0tS1kHg54

View file

@ -1,17 +0,0 @@
# Use subroutine to do preprocessing and running pdflatex
$pdflatex = 'internal mylatex %B %O';
sub mylatex {
my $base = shift @_;
my $tex = "$base.tex";
# Run the preprocessor
if (-e "$base.lhs" && `which lhs2TeX` ne "") {
# Run the preprocessor
system('lhs2TeX', '--poly', '-o', $tex, "$base.lhs") == 0 or return $?;
}
# Run pdflatex
my $return = system('pdflatex', @_, $tex);
system "echo INPUT $base.lhs >> $aux_dir1$base.fls";
return $return;
}