From f956af85c751ae616491f99ba39f5546ce4a8f7b Mon Sep 17 00:00:00 2001 From: esquizo Date: Fri, 13 Mar 2026 00:12:51 -0300 Subject: make dist --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 96f8b0a..76190f9 100644 --- a/Makefile +++ b/Makefile @@ -5,9 +5,12 @@ PAGES=index.html\ all: $(PAGES) clean: - rm -f $(PAGES) + rm -f $(PAGES) dist.tar.gz + +dist: all + tar -cv static $(PAGES) | gzip > dist.tar.gz %.html: %.md templates/base.m4 m4 -DPAGECONTENT="$$(markdown $<)" templates/base.m4 > $@ -.PHONY: all clean +.PHONY: all clean dist -- cgit v1.2.3