From 18fda74885dbe4081702d8ca0ddc5f8b5e4f8121 Mon Sep 17 00:00:00 2001 From: Arcterus Date: Thu, 12 Jun 2014 19:49:00 -0700 Subject: [PATCH] Clarify uninstallation instructions --- README.md | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7b780f7fe..0ebe47eea 100644 --- a/README.md +++ b/README.md @@ -70,8 +70,20 @@ make PROG_PREFIX=PREFIX_GOES_HERE install Uninstallation Instructions --------------------------- -Do the same command as in the Installation Instructions above, but replace -```install``` with ```uninstall```. +To uninstall all utilities: +``` +make uninstall +``` + +To uninstall the multicall binary: +``` +make MULTICALL=1 uninstall +``` + +To uninstall every program (other than the multicall binary) with a set prefix: +``` +make PROG_PREFIX=PREFIX_GOES_HERE uninstall +``` Test Instructions -----------------