From d2a39305d8d190f0fa6d0485315a3586c93f8322 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Wed, 19 Jun 2024 16:44:11 -0400 Subject: Add support for VERSION flag --- Makefile | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 874af3d..60007f5 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,9 @@ err: BUILD_DIR = build SRC_MAKE_CALL = $(MAKE) -f src/Makefile BUILD_DIR=$(BUILD_DIR) NO_CSS=$(NO_CSS) LOCALE=$(LOCALE) +ifdef VERSION + SRC_MAKE_CALL += VERSION=$(VERSION) +endif # For this target, only archive docsets that have already been built in BUILD_DIR .phony: archive -- cgit