From 01c795413df88b987e0ac5929c6afff4c82a1121 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Sun, 3 Sep 2023 15:58:22 -0500 Subject: [PATCH] Add command installation to build system --- Makefile | 8 ++++- make_files/make_commands.mk | 71 +++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 make_files/make_commands.mk diff --git a/Makefile b/Makefile index 64cb340..edc0c95 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,8 @@ # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . - +# +# Karl O. Pinc # To get a database of comments, look for: # ^.. |TABLEORTABLECOLUMN| replace:: .* @@ -33,3 +34,8 @@ EMACS_BK_CHR := ~ # Make "help" be the default target include $(MAKE_FILES)/help.mk include $(MAKE_FILES)/make_docs.mk + +# +# The commands part of the build system +# +include $(MAKE_FILES)/make_commands.mk diff --git a/make_files/make_commands.mk b/make_files/make_commands.mk new file mode 100644 index 0000000..a33b995 --- /dev/null +++ b/make_files/make_commands.mk @@ -0,0 +1,71 @@ +# Copyright (C) 2023 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 +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . +# + +## +## +## ######################################################################## +## COMMAND LINE PROGRAM TARGETS +## +## The available targets for make (make TARGET) are: +## + +TARGETS := /usr/local/lib/git_email_hook.sh + +# Developers need permissions to install into the local directories +DEV_GROUP := wwwdev +LOCAL_DIRS := /usr/local/lib /usr/local/bin /usr/local/sbin + +CMD_DEPENDS := $(GENERIC_DEPENDS) + +## install-w-permissions +## Install the command line programs and libararies +## and assign them the necessary permissions +.PHONY: install-w-permissions +install-w-permissions: install-commands set-permissions + +## +## Lesser used targets are: +## + +## install-commands Install the command line programs and libraries +.PHONY: install-commands +install-commands: $(TARGETS) + +## set-permissions Set permissions in the file system needed for +## program execution +.PHONY: set-permissions +set-permissions: + for target in $(TARGETS) ; do \ + chgrp $(DEV_GROUP) $${target} ; \ + chmod a+x,g+wrx $${target} ; \ + done + +## set-install-permissions +## Set the permissions in the file system needed so +## developers can install programs +## THIS MUST BE RUN AS ROOT. +.PHONY: set-install-permissions +set-install-permissions: + for dir_name in $(LOCAL_DIRS) ; do \ + chgrp $(DEV_GROUP) $${dir_name} ; \ + chmod g+rwx $${dir_name} ; \ + done + +## /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) + cp $< $@ -- 2.34.1