ransford / pdflatex-makefile

Simple Makefile for pdflatex-produced documents
113 stars 37 forks source link

Adding option to specify output directory. #25

Closed wladston closed 7 years ago

wladston commented 9 years ago

Not specifying an output directory, the working directory becomes a mess of numerous pre-processing files. This makes it easier to clean these temporary files, and also to ignore all temporary files with a single line in gitignore.

ransford commented 9 years ago

I couldn't get this to work in the example/ directory. In particular, looks like the dependencies weren't computed correctly. For example, $(AUXFILES) probably needs to be $(addprefix $(OUTPUTDIR)/, $(AUXFILES)) -- does that make sense?