From 6f301956c287cb77b825d08cd8f22b782ec094fa Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Fri, 8 Sep 2023 14:15:41 -0500 Subject: [PATCH] Change variable name from SOKWEDB_DB to TARGET_DB --- make_files/defaults.mk | 8 ++++---- make_files/make_db.mk | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/make_files/defaults.mk b/make_files/defaults.mk index 140b402..563d731 100644 --- a/make_files/defaults.mk +++ b/make_files/defaults.mk @@ -24,7 +24,7 @@ # # Database Connection Variables: # -## SOKWEDB_DB +## TARGET_DB ## The name of the database with which to interact. The default ## is 'sokwedb_copy'. ## @@ -37,15 +37,15 @@ ## The host hosting the database. The default is: ## sokwe-dbs.postgres.database.azure.com -ifeq ($(strip $(SOKWEDB_DB)),) - export SOKWEDB_DB := sokwedb_copy +ifeq ($(strip $(TARGET_DB)),) + export TARGET_DB := sokwedb_copy endif export HOST := sokwe-dbs.postgres.database.azure.com export ADMINUSER := sokwedb_admin@sokwe-dbs # For invoking psql everywhere. -export PSQL_ARGS_MINIMAL := -U $(ADMINUSER) -d $(SOKWEDB_DB) -h $(HOST) +export PSQL_ARGS_MINIMAL := -U $(ADMINUSER) -d $(TARGET_DB) -h $(HOST) export PSQL_ARGS := --tuples-only -q $(PSQL_ARGS_MINIMAL) export PSQL_SINGLE_TRANS := --single-transaction --file - diff --git a/make_files/make_db.mk b/make_files/make_db.mk index a96aa5c..04bc8ad 100644 --- a/make_files/make_db.mk +++ b/make_files/make_db.mk @@ -28,9 +28,9 @@ # (It may be necessary to 'make databases' as the postgres # Unix user, depending on your pg_hba.conf file.) # -# make SOKWEDB_DB=sokwedb install -# make SOKWEDB_DB=sokwedb_test install -# make SOKWEDB_DB=sokwedb_copy install +# make TARGET_DB=sokwedb install +# make TARGET_DB=sokwedb_test install +# make TARGET_DB=sokwedb_copy install # # Bugs: # @@ -67,7 +67,7 @@ ## ## To use a variable, set it on the command line, e.g.: -## make SOKWEDB_DB=sokwedb_test installtables +## make TARGET_DB=sokwedb_test installtables # Paths. Be explicit instead of using VPATH, et-al. DB_DIR = db -- 2.34.1