From 428425461d9d79fb6010e81405d8eab7e85b9287 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc kop@karlpinc.com" Date: Mon, 21 Oct 2024 22:23:24 +0000 Subject: [PATCH] Add build_pgwui_packages target to manually speed up install_pgwui target --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 8fb99d0..00e4d9d 100644 --- a/Makefile +++ b/Makefile @@ -248,6 +248,7 @@ install_pgwui: pgwui_packages.sh $(PGWUI_REPOS) $(PGWUI_VENV) $(PGWUI_PACKAGES) ## ## Lesser used targets: +## Using these targets can reduce downtime ## ## pull_pgwui_repos Bring all the local pgwui repos up to date @@ -257,6 +258,11 @@ pull_pgwui_repos: $(PGWUI_REPOS) printf '%s\n' $${repo} ; \ ( cd $${repo} ; git pull -a ) ; \ done + +## build_pgwui_packages +## Build all the pgwui packages in the local pgwui repos +.PHONY: build_pgwui_packages +build_pgwui_packages: $(PGWUI_PACKAGES) ## ## ######################################################################## -- 2.34.1