From 97ab316a7ec5fec86f33e92cbc56590e8e352349 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Tue, 7 Jul 2020 18:31:46 -0700 Subject: [PATCH] a little help from my scripts --- install | 9 +++++++++ uninstall | 9 +++++++++ 2 files changed, 18 insertions(+) create mode 100755 install create mode 100755 uninstall diff --git a/install b/install new file mode 100755 index 0000000..ca842e3 --- /dev/null +++ b/install @@ -0,0 +1,9 @@ +#!/bin/bash + +cd ambed +make install + +cd ../src +make install + +cd .. diff --git a/uninstall b/uninstall new file mode 100755 index 0000000..da87e8b --- /dev/null +++ b/uninstall @@ -0,0 +1,9 @@ +#!/bin/bash + +cd ambed +make uninstall + +cd ../src +make uninstall + +cd ..