summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-05-11 16:09:55 +0100
committerJoe Carstairs <me@joeac.net>2026-05-11 16:09:55 +0100
commit18fa74443ecab966e47cbe8eb922eb4aa0a7821e (patch)
treef8ea5d938abe416765498ffb7fcf5eb63a47eb3b /Makefile
parentf7f16deea33f476c3cf71d23df507323fa3f11b3 (diff)
Makefile: aliases rule names
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c1e4e05..fca2f95 100644
--- a/Makefile
+++ b/Makefile
@@ -19,7 +19,9 @@ else
done
endif
-log: $(LOG_MARKDOWN) $(BIBLIOGRAPHY)
+log: $(LOG_PDF)
+
+$(LOG_PDF): $(LOG_MARKDOWN) $(BIBLIOGRAPHY)
pandoc \
--standalone \
--from markdown \
@@ -29,7 +31,9 @@ log: $(LOG_MARKDOWN) $(BIBLIOGRAPHY)
--output $(LOG_PDF) \
$(LOG_MARKDOWN)
-scrapbook: $(SCRAPBOOK_MARKDOWN) $(BIBLIOGRAPHY)
+scrapbook: $(SCRAPBOOK_PDF)
+
+$(SCRAPBOOK_PDF): $(SCRAPBOOK_MARKDOWN) $(BIBLIOGRAPHY)
pandoc \
--standalone \
--from markdown \