Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: re-build pdf on updating non-main TeX files (#30)
This patch makes building command detect updates in non-main `.tex` and corresponding `.bib` files and re-build the resulting pdf file. This is achieved by adding `*.tex` and corresponding `.bib` files as prerequisites for the output pdf file in the Makefile. Previous behavior: ``` $ vi 010_intro.tex ... $ make make: Nothing to be done for 'all'. ``` New behavior: ``` $ vi 010_intro.tex ... $ make Start building... ```
- Loading branch information