diff options
author | Leah Rowe <leah@libreboot.org> | 2025-01-03 01:41:46 +0000 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2025-01-03 01:41:46 +0000 |
commit | 57f9906f6d148d2c302e38923a64664c74b4934a (patch) | |
tree | 01c9745052f8a21cf3b6dd51c5bc0650c86cb4ce | |
parent | 4defe2c6085f72f6fb9132aaa876f1ac2ab29657 (diff) |
util/nvmutil: Add uninstall to Makefile
Signed-off-by: Leah Rowe <leah@libreboot.org>
-rw-r--r-- | util/nvmutil/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/nvmutil/Makefile b/util/nvmutil/Makefile index 2d646a44..ca23c714 100644 --- a/util/nvmutil/Makefile +++ b/util/nvmutil/Makefile @@ -12,6 +12,9 @@ nvm: nvmutil.c install: nvm install nvm $(PREFIX)/nvm +uninstall: clean + rm -f $(PREFIX)/nvm + distclean: rm -f nvm |