Skip to content

Commit 3ca53f8

Browse files
committed
Makefile: add uninstall target
Signed-off-by: Akihiro Suda <[email protected]>
1 parent c02520b commit 3ca53f8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ install:
5252
cp -av _output/* /usr/local/
5353
if [[ $(shell uname -s ) != Linux && ! -e /usr/local/bin/nerdctl ]]; then ln -sf nerdctl.lima /usr/local/bin/nerdctl; fi
5454

55+
.PHONY: uninstall
56+
uninstall:
57+
rm -rf /usr/local/bin/{lima,limactl,nerdctl.lima} /usr/local/share/lima /usr/local/share/doc/lima
58+
5559
.PHONY: clean
5660
clean:
5761
rm -rf _output

0 commit comments

Comments
 (0)