From a0a893cc55e05813020993f51dc0ab1857411e74 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 4 Sep 2023 13:06:44 -0500 Subject: [PATCH] Use $CMD_TARGETS instead of $TARGETS for uniqueness among include files --- make_files/make_commands.mk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/make_files/make_commands.mk b/make_files/make_commands.mk index a33b995..7b494a9 100644 --- a/make_files/make_commands.mk +++ b/make_files/make_commands.mk @@ -22,7 +22,7 @@ ## The available targets for make (make TARGET) are: ## -TARGETS := /usr/local/lib/git_email_hook.sh +CMD_TARGETS := /usr/local/lib/git_email_hook.sh # Developers need permissions to install into the local directories DEV_GROUP := wwwdev @@ -42,13 +42,13 @@ install-w-permissions: install-commands set-permissions ## install-commands Install the command line programs and libraries .PHONY: install-commands -install-commands: $(TARGETS) +install-commands: $(CMD_TARGETS) ## set-permissions Set permissions in the file system needed for ## program execution .PHONY: set-permissions set-permissions: - for target in $(TARGETS) ; do \ + for target in $(CMD_TARGETS) ; do \ chgrp $(DEV_GROUP) $${target} ; \ chmod a+x,g+wrx $${target} ; \ done @@ -67,5 +67,5 @@ set-install-permissions: ## /usr/local/lib/git_email_hook.sh ## A git post-receive hook which emails push summaries # Install the actual files -$(TARGETS): /usr/local/% : % $(CMD_DEPENDS) +$(CMD_TARGETS): /usr/local/% : % $(CMD_DEPENDS) cp $< $@ -- 2.34.1