diff options
| author | Joe Carstairs <me@joeac.net> | 2026-05-11 16:09:55 +0100 |
|---|---|---|
| committer | Joe Carstairs <me@joeac.net> | 2026-05-11 16:09:55 +0100 |
| commit | 18fa74443ecab966e47cbe8eb922eb4aa0a7821e (patch) | |
| tree | f8ea5d938abe416765498ffb7fcf5eb63a47eb3b | |
| parent | f7f16deea33f476c3cf71d23df507323fa3f11b3 (diff) | |
Makefile: aliases rule names
| -rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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 \ |
