Makefile 185 Bytes
BASENAME = relatorioR4

all: $(BASENAME).pdf
	evince $< &

$(BASENAME).pdf: $(BASENAME).md
	pandoc --standalone --from markdown --to latex --output $@ $<

clean:
	rm -f $(BASENAME).pdf