aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHumm <hummsmith42@gmail.com>2022-01-05 01:54:02 +0100
committerLeonardo Hernández Hernández <leohdz172@protonmail.com>2022-03-23 18:22:40 -0600
commit0db6f3c5b5f971bebfbbf8ec9bf94134f5506600 (patch)
tree14f98ee03863adcf17c1b09f99e288642551cc50 /Makefile
parentd8ab893dab76c5f2921c30bde04fa141fb788b25 (diff)
add dwl(1)
Documentation is good. Man pages are documentation. A program without a man page is worthless.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5ff69e9..536454f 100644
--- a/Makefile
+++ b/Makefile
@@ -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