diff options
author | Devin J. Pohly <djpohly@gmail.com> | 2021-04-19 11:12:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-19 11:12:46 -0500 |
commit | 2f39fb84ac737d5e09aac2f4462565c74825a287 (patch) | |
tree | 2dd64fbeaca479a83cafd39bf352b602d845a180 | |
parent | update status info if focused client changes title (diff) | |
parent | added uninstall target (diff) | |
download | dwl-2f39fb84ac737d5e09aac2f4462565c74825a287.tar.gz dwl-2f39fb84ac737d5e09aac2f4462565c74825a287.tar.bz2 dwl-2f39fb84ac737d5e09aac2f4462565c74825a287.tar.xz dwl-2f39fb84ac737d5e09aac2f4462565c74825a287.tar.zst dwl-2f39fb84ac737d5e09aac2f4462565c74825a287.zip |
Merge pull request #112 from JaGoLi/main
Add uninstall target in makefile like dwm
Diffstat (limited to '')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -17,7 +17,10 @@ clean: install: 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 # protocols, which are specified in XML. wlroots requires you to rig these up |