diff options
author | Sevz <leohdz172@protonmail.com> | 2022-03-22 16:26:38 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-22 16:26:38 -0600 |
commit | 358562e2df17398ff1f998b80fd5c396521f69d5 (patch) | |
tree | 5df8a9f0abba25a073d9ff0ce0cb1ac1e9bd63d5 /Makefile | |
parent | 9aec6049ecbefe3618f34002d2239cc9462c07e9 (diff) | |
parent | 0c4740b27735199f2c194b47c85ab321250631b4 (diff) |
Merge pull request #180 from Humm42/manpage
add dwl(1)
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -15,10 +15,11 @@ clean: rm -f dwl *.o *-protocol.h *-protocol.c install: dwl - install -D dwl $(PREFIX)/bin/dwl + install -Dm755 dwl $(PREFIX)/bin/dwl + install -Dm644 dwl.1 $(MANDIR)/man1/dwl.1 uninstall: - rm -f $(PREFIX)/bin/dwl + rm -f $(PREFIX)/bin/dwl $(MANDIR)/man1/dwl.1 .PHONY: all clean install uninstall |