ransford / pdflatex-makefile

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

Support multiple TARGETs #10

Closed kingjon3377 closed 10 years ago

kingjon3377 commented 10 years ago

In my current project, I'm building two PDFs from essentially the same source but using two incompatible document-types. After I reread Makefile.include, I got this to more-or-less work with the following:

TARGET=poems
PDFTARGETS=poems-alt
include ~/src/pdflatex-makefile/Makefile.include

But I would like to be able to simply say

TARGETS=poems poems-alt
include ~/src/pdflatex-makefile/Makefile.include
ransford commented 10 years ago

Good idea!