From 3b7382d500b6bf7c5692c57643c81d8ef8188b40 Mon Sep 17 00:00:00 2001 From: "Leigh B. Stoller" Date: Thu, 4 Jan 2001 23:00:35 +0000 Subject: [PATCH] Add "control-install" target fto be run on plastic, which will install the couple of things that need to be over there. --- GNUmakefile.in | 7 +++++++ security/GNUmakefile.in | 8 +++++++- tbsetup/GNUmakefile.in | 5 +++++ 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/GNUmakefile.in b/GNUmakefile.in index cebb2067d..f50bfd417 100644 --- a/GNUmakefile.in +++ b/GNUmakefile.in @@ -20,6 +20,13 @@ post-install: @$(MAKE) -C tbsetup post-install @$(MAKE) -C security post-install +# +# For installation on the control node (okay, plastic) +# +control-install: + @$(MAKE) -C tbsetup control-install + @$(MAKE) -C security control-install + install-mkdirs: -mkdir -p $(INSTALL_TOPDIR)/locks -mkdir -p $(INSTALL_TOPDIR)/log diff --git a/security/GNUmakefile.in b/security/GNUmakefile.in index 42915cc2c..e9af1a79e 100644 --- a/security/GNUmakefile.in +++ b/security/GNUmakefile.in @@ -27,12 +27,18 @@ CFLAGS = -O -g \ suexec: suexec.c suexec.h $(CC) $(CFLAGS) -o suexec suexec.c -install: $(addprefix $(INSTALL_LIBEXECDIR)/, $(BINS)) $(addprefix $(INSTALL_BINDIR)/, paperbag) +install: $(addprefix $(INSTALL_LIBEXECDIR)/, $(BINS)) \ + $(addprefix $(INSTALL_BINDIR)/, paperbag) @echo "Don't forget to do a post-install as root" post-install: chown root $(INSTALL_LIBEXECDIR)/suexec chmod u+s $(INSTALL_LIBEXECDIR)/suexec +# +# Control node installation (okay, plastic) +# +control-install: $(addprefix $(INSTALL_BINDIR)/, plasticwrap) + clean: rm -f *.o $(BINS) core diff --git a/tbsetup/GNUmakefile.in b/tbsetup/GNUmakefile.in index e8b85ef44..a6563c17b 100644 --- a/tbsetup/GNUmakefile.in +++ b/tbsetup/GNUmakefile.in @@ -72,6 +72,11 @@ post-install: chown root $(INSTALL_LIBEXECDIR)/console_setup chmod u+s $(INSTALL_LIBEXECDIR)/console_setup +# +# Control node installation (okay, plastic) +# +control-install: $(addprefix $(INSTALL_SBINDIR)/, console_setup.proxy) + clean: subdir-clean rm -f *.o core tbreport -- GitLab