BUILDDIR = build PS_TARGETS = $(patsubst designs/%.yaml,$(BUILDDIR)/%.ps,$(wildcard designs/*.yaml)) PDF_TARGETS = $(patsubst designs/%.yaml,$(BUILDDIR)/%.pdf,$(wildcard designs/*.yaml)) .PHONY: all ps pdf clean all: pdf ps: $(PS_TARGETS) pdf: $(PDF_TARGETS) $(BUILDDIR)/%.ps: designs/%.yaml mkdir -p ${BUILDDIR} ./bin/render -o $@ $< $(BUILDDIR)/%-a4.pdf: ${BUILDDIR}/%-a4.ps ps2pdf $< $@ $(BUILDDIR)/%-a5.pdf: ${BUILDDIR}/%-a5.ps ps2pdf -sPAPERSIZE=a5 $< $@ $(BUILDDIR)/%-a6.pdf: ${BUILDDIR}/%-a6.ps ps2pdf -sPAPERSIZE=a6 $< $@ clean: rm -f ${BUILDDIR}/*.ps ${BUILDDIR}/*.pdf