From 526450cadf44bc5f16ed777a1667e501847b1182 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 27 Sep 2023 21:55:35 -0500 Subject: [PATCH] Provide overview of how to use the make system --- Makefile | 4 ++++ make_files/make_db.mk | 1 + 2 files changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 2d7c1d9..603a535 100644 --- a/Makefile +++ b/Makefile @@ -45,6 +45,10 @@ include $(MAKE_FILES)/help.mk ## ######################################################################## ## GENERIC TARGETS ## +## Start by making a PostgreSQL database, following the instructions of +## the CLUSTER INITIALIZATION section below. Then the rest of the targets +## will work. These are the basic targets: +## ## install Build and install everything .PHONY: install diff --git a/make_files/make_db.mk b/make_files/make_db.mk index 3db7f1e..4ed91d5 100644 --- a/make_files/make_db.mk +++ b/make_files/make_db.mk @@ -459,6 +459,7 @@ $(DB_TARGETS) db/creategroups.sql: %.sql: %.m4 $(DB_DEPENDS) ## ## ######################################################################## ## CLUSTER INITIALIZATION +## (and initial db creation) ## ## The following targets are used to setup the database cluster; ## do things like create a database and properly initialize it. -- 2.34.1