Nikolaus Wittenstein
Nikolaus Wittenstein
I'm happy to implement whatever (or close the PR if that's the best path forward). I opened this because I have a script that clones modules locally so I can...
GCC is also able to handle circular dependencies just fine. a.h: ``` #include "b.h" ``` b.h: ``` #include "a.h" ``` `gcc a.h`: `b.h:1:15: error: #include nested too deeply` Seems like...
I'm going to try http://users.phys.psu.edu/~collins/latexmk/ and see what I can see.
I got it working with: ``` #we need to export HOME, because pdflatex uses it to figure out where ~/texmf is export HOME : foreach *.tex |> latexmk -bibtex -pdf...