aboutsummaryrefslogtreecommitdiffstats
path: root/agi
diff options
context:
space:
mode:
authormogorman <mogorman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-01 18:39:41 +0000
committermogorman <mogorman@f38db490-d61c-443f-a65b-d21fe96a405b>2006-02-01 18:39:41 +0000
commit4ef13bdcda317b27b6cb59e7c5d8a9006abb6dc5 (patch)
tree6a2ab56c89ec254ff4692703dd51d495c9d7186f /agi
parent0c43a5ab3637e311a9232ae77ecd8e7f05c2f8cc (diff)
Allows for user to uninstall asterisk binaries
bug 6177 git-svn-id: http://svn.digium.com/svn/asterisk/trunk@9052 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'agi')
-rw-r--r--agi/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/agi/Makefile b/agi/Makefile
index 8cea3499f..5f2a6af9b 100644
--- a/agi/Makefile
+++ b/agi/Makefile
@@ -30,6 +30,9 @@ install: all
mkdir -p $(DESTDIR)$(AGI_DIR)
for x in $(AGIS); do $(INSTALL) -m 755 $$x $(DESTDIR)$(AGI_DIR) ; done
+uninstall:
+ for x in $(AGIS); do rm -f $(DESTDIR)$(AGI_DIR)/$$x ; done
+
eagi-test: eagi-test.o
$(CC) $(CFLAGS) -o eagi-test eagi-test.o $(LIBS)