Merge pull request #112 from JaGoLi/main

Add uninstall target in makefile like dwm
main
Devin J. Pohly 2021-04-19 11:12:46 -05:00 committed by GitHub
commit 2f39fb84ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -17,7 +17,10 @@ clean:
install: dwl install: dwl
install -D dwl $(PREFIX)/bin/dwl install -D dwl $(PREFIX)/bin/dwl
.PHONY: all clean install uninstall:
rm -f $(PREFIX)/bin/dwl
.PHONY: all clean install uninstall
# wayland-scanner is a tool which generates C headers and rigging for Wayland # wayland-scanner is a tool which generates C headers and rigging for Wayland
# protocols, which are specified in XML. wlroots requires you to rig these up # protocols, which are specified in XML. wlroots requires you to rig these up