From d55959b534181ee9f8355749d8495b5715bee4c9 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Sun, 2 Jan 2022 12:59:17 +1100 Subject: [PATCH] make distribution by default --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8d20a06..0d54451 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,10 @@ MAIN = command.lsp LSP = $(filter-out $(MAIN),$(wildcard *.lsp)) BIN = hourglass hourglass-web +VERSION = 0.1 -all: $(BIN) +dist: $(BIN) + tar czf hourglass-$(VERSION).tgz $(BIN) hourglass: $(MAIN) $(LSP) packnl -w $@ $^ -- 2.39.2