1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 19:47:45 +00:00

Clarify uninstallation instructions

This commit is contained in:
Arcterus 2014-06-12 19:49:00 -07:00
parent 986d7cba79
commit 18fda74885

View file

@ -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
-----------------