From bd7a8ea8a1adbd6763aea857e72623929b7ad7a4 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Tue, 15 Mar 2016 15:43:17 +0100 Subject: irmd, lib: Create and destroy IPC Processes This adds the functionality to create and destroy IPCPs. Upon creation a new process is forked and execve'd. Upon destruction the IPCP is destroyed by killing it with SIGTERM. --- install_release.sh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 install_release.sh (limited to 'install_release.sh') diff --git a/install_release.sh b/install_release.sh new file mode 100755 index 00000000..afaee3d5 --- /dev/null +++ b/install_release.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +ME=install_release + +if (($# == 1 )) +then + PREFIX=`echo "$1"|sed -e "s,\/$,,"` +else + PREFIX="/usr/local/ouroboros" +fi + +BUILDDIR=build +RELEASEDIR=release + +bash compile_debug.sh $PREFIX + +cd $BUILDDIR/$RELEASEDIR +make install -- cgit v1.2.3