include config.mk

.PHONY: all
all: poster.pdf

%.pdf: %.typ
	$(TYPST) compile --font-path fonts $<

.PHONY: clean
clean:
	rm -f poster.pdf
