FILES		= Blockquote.groff
TARGET		= ./build/Blockquote.pdf 
PRE		=
PROCESSOR	= groff 
OPTIONS		= -Tpdf -U -mom  

.PHONY	: all preview 

all:
	${PRE} ${PROCESSOR} ${OPTIONS} ${FILES} > ${TARGET}
	killall -HUP mupdf

preview:
	mupdf ${TARGET} &

