blob: 3995af0acf06388508a9da077503df9cee809050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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)/%.pdf: ${BUILDDIR}/%.ps
ps2pdf $< $@
clean:
rm -f ${BUILDDIR}/*.ps ${BUILDDIR}/*.pdf
|