diff options
author | Squibid <me@zacharyscheiman.com> | 2024-12-19 11:45:52 -0600 |
---|---|---|
committer | Squibid <me@zacharyscheiman.com> | 2024-12-19 11:45:52 -0600 |
commit | 8ac77308f47057773ac544ad45c7729dd2908908 (patch) | |
tree | 57249aeeec28fa70cd91941ec4199b66d5de24d4 /Makefile | |
parent | 49dab6feaa7a13bd9b5555d3416616e6c0b3ab1d (diff) | |
download | XD-8ac77308f47057773ac544ad45c7729dd2908908.tar.gz XD-8ac77308f47057773ac544ad45c7729dd2908908.tar.bz2 XD-8ac77308f47057773ac544ad45c7729dd2908908.zip |
add man page
Diffstat (limited to '')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -17,6 +17,9 @@ install: XD mkdir -p $(PREFIX)/bin cp -f XD $(PREFIX)/bin chmod 755 $(PREFIX)/bin/XD + mkdir -p $(MANDIR)/man1 + cp -f XD.1 $(MANDIR)/man1 + chmod 644 $(PREFIX)/man1/XD.1 uninstall: XD - rm -f $(PREFIX)/bin/XD + rm -f $(PREFIX)/bin/XD $(MANDIR)/man1/XD.1 |