diff options
author | jvech <jmvalenciae@unal.edu.co> | 2024-09-21 14:46:03 -0500 |
---|---|---|
committer | jvech <jmvalenciae@unal.edu.co> | 2024-09-21 14:46:03 -0500 |
commit | e3040135a5e51baab04070e04f86c22df2867c5c (patch) | |
tree | 0e53f2a649d3096a14a4e1772472463f5e968d7a /Makefile | |
parent | 3fc51ee0c8135d95ec422dadd6562bf97261a757 (diff) |
The only concern I have with this file is having the program version
matching with the actual program, but it is not critical
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -38,6 +38,7 @@ install: all @#man page install -d $(MANPREFIX)/man1 install -m 644 doc/ml.1 $(MANPREFIX)/man1/ml.1 + install -m 644 doc/ml_config.5 $(MANPREFIX)/man5/ml_config.5 install_config: mkdir -p ~/.config/ml @@ -46,6 +47,7 @@ install_config: uninstall: rm -v $(BINPREFIX)/${BIN} rm -v $(MANPREFIX)/man1/ml.1 + rm -v $(MANPREFIX)/man5/ml_config.5 man: build help2man -N ./ml -I doc/man.txt > doc/ml.1 |