From a2d45700fde179f9d13e08a08ad6a12fc4564c4a Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 29 Jan 2024 12:45:47 -0600 Subject: [PATCH] Add clean-commands target for scripts --- Makefile | 4 ++-- make_files/make_commands.mk | 13 ++++++++++--- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 1c25492..f322ab5 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 2019, 2023 The Meme Factory, Inc. www.karlpinc.com +# Copyright (C) 2019, 2023, 2024 The Meme Factory, Inc. www.karlpinc.com # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -46,7 +46,7 @@ install: install-docs install-db install-commands ## clean Delete all user-generated files .PHONY: clean -clean: clean-docs clean-db +clean: clean-docs clean-db clean-commands ## ## For further help, examples, and information on how to use this file, see: diff --git a/make_files/make_commands.mk b/make_files/make_commands.mk index acaee6b..628401c 100644 --- a/make_files/make_commands.mk +++ b/make_files/make_commands.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2023 The Meme Factory, Inc. www.karlpinc.com +# Copyright (C) 2023, 2024 The Meme Factory, Inc. www.karlpinc.com # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -22,8 +22,10 @@ ## The available targets for make (make TARGET) are: ## -CMD_TARGETS := /usr/local/bin/sokwedb-user-add \ - /usr/local/bin/sokwedb-user-delete +CMD_SCRIPTS := sokwedb-user-add \ + sokwedb-user-delete + +CMD_TARGETS := $(patsubst %,/usr/local/bin/%,$(CMD_SCRIPTS)) # Developers need permissions to install into the local directories DEV_GROUP := wwwdev @@ -38,6 +40,11 @@ M4_CMD_INCLUDE_ARGS := -I $(M4_GLOBAL_INCLUDE_PATH) .PHONY: install-w-permissions install-w-permissions: install-commands set-permissions +## clean-commands Remove all the generated command related files +.PHONY: clean-commands +clean-commands: + rm -rf $(CMD_SCRIPTS) + ## ## Lesser used targets are: ## -- 2.34.1