FILES		=  ReferTest.groff
TARGET		= ./build/ReferTest.pdf 
PRE		= soelim
PROCESSOR	= groff -Tpdf 
OPTIONS		= -U -R -s -ms 

.PHONY	: all preview 

all:
	${PRE} ${FILES} | refer | tee pregroff.groff | ${PROCESSOR} ${OPTIONS}  > ${TARGET}

preview:
	mupdf ${TARGET} &

