diff options
| author | Jason Goulet-Lipman <jason.gouletlipman@gmail.com> | 2021-04-19 09:05:35 -0400 | 
|---|---|---|
| committer | Jason Goulet-Lipman <jason.gouletlipman@gmail.com> | 2021-04-19 09:05:35 -0400 | 
| commit | d57db4cac927126d1d006becf5f2ed743ac21474 (patch) | |
| tree | 2dd64fbeaca479a83cafd39bf352b602d845a180 | |
| parent | 3727f4a7b3d230226f0082581444344d563e0f9c (diff) | |
added uninstall target
| -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 | 
