From 96b26d87637168822c5d4399c8c83dfdec2bc760 Mon Sep 17 00:00:00 2001 From: Cole Poirier Date: Fri, 3 Apr 2020 11:03:03 -0700 Subject: [PATCH] Fixed makefile file fidning, went from *.md to *.mdwn. Created dedicated pdf output dir. --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 34ff761..669cb38 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ SRC = updates -SOURCES = $(shell find $(SRC) -name "*.md") -PDFS = $(SOURCES:$(SRC)/%.md=%.pdf) +SOURCES = $(shell find $(SRC) -name "*.mdwn") +PDFS = $(SOURCES:$(SRC)/%.mdwn=%.pdf) all: $(PDFS) @@ -8,8 +8,8 @@ debug: $(info SOURCES is $(SOURCES)) $(info PDFS is $(PDFS)) -%.pdf:$(SRC)/%.md - pandoc -s $< -o $@ +%.pdf:$(SRC)/%.mdwn + pandoc -s $< -o pdfs/$@ clean: rm -rf *.pdf -- 2.30.2