From 75db3e1605facb3c39ae40432ba6e50c506ab76b Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Mon, 6 Jan 2025 14:22:53 -0600 Subject: [PATCH] Delete files generated by cluster code when cleaning --- Makefile | 2 +- make_files/make_cluster.mk | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f322ab5..b2e1066 100644 --- a/Makefile +++ b/Makefile @@ -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-commands +clean: clean-cluster 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_cluster.mk b/make_files/make_cluster.mk index d5d31d0..bc582e8 100644 --- a/make_files/make_cluster.mk +++ b/make_files/make_cluster.mk @@ -1,4 +1,4 @@ -# Copyright (C) 2023 The Meme Factory, Inc. http://www.karlpinc.com/ +# Copyright (C) 2023, 2025 The Meme Factory, Inc. http://www.karlpinc.com/ # Copyright (C) 2004, 2005, 2008, 2011 Karl O. Pinc # # This program is free software: you can redistribute it and/or modify @@ -367,6 +367,11 @@ compare-az-server: $(GET_AZ_SERVER_SETTINGS) \ | db/compare-az-server.sh +## clean-cluster Delete generated files +.PHONY: clean-cluster +clean-cluster: + rm -rf $(GENERATED_SHELL) + ## ## Lesser used targets: ## -- 2.34.1