From b390352c9f3fc0f5d80ded11ace2c6f4271674fd Mon Sep 17 00:00:00 2001 From: tlatorre Date: Thu, 14 Jan 2021 12:03:13 -0600 Subject: add archive target to makefile --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 24a8580..f2b087c 100644 --- a/Makefile +++ b/Makefile @@ -10,4 +10,7 @@ default: all doc: cd doc && "$(MAKE)" -.PHONY: doc +archive: + git archive --format=tar master | gzip > snotdaq-master.tar.gz + +.PHONY: doc archive -- cgit