aboutsummaryrefslogtreecommitdiff
path: root/book/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'book/GNUmakefile')
-rw-r--r--book/GNUmakefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/book/GNUmakefile b/book/GNUmakefile
index c80844ee..09dcdcec 100644
--- a/book/GNUmakefile
+++ b/book/GNUmakefile
@@ -11,13 +11,15 @@ svg_pages = $(shell echo out/book_{$(s_pages)}.{$(s_langs)}.svg)
webp_pages = $(shell echo out/book_{$(s_pages)}.{$(s_langs)}.webp)
pdfs = $(shell echo out/book.{$(s_langs)}.pdf)
-MOST = $(pdfs)
-ALL = out/book.webp.tar.zst out/book.svg.tar.zst \
+MINIMAL = book.json
+MOST = book.json $(pdfs)
+ALL = book.json out/book.webp.tar.zst out/book.svg.tar.zst \
$(pdfs) $(png_pages) $(webp_pages) $(svg_pages)
JSR = deno run
.PHONY: all
+minimal: $(MINIMAL)
most: $(MOST)
all: $(ALL)