aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorChristian Duerr <contact@christianduerr.com>2021-11-08 23:22:09 +0000
committerGitHub <noreply@github.com>2021-11-08 23:22:09 +0000
commitb885ec9cd3b40b9bcb91dadb834d9ecc02cfd67d (patch)
treeed4a970893d2f95aabb94f80d9e86cae0906ff32 /Makefile
parent33db289f7fe31b5200317055899df6ec40bdfc6f (diff)
downloadalacritty-b885ec9cd3b40b9bcb91dadb834d9ecc02cfd67d.tar.gz
alacritty-b885ec9cd3b40b9bcb91dadb834d9ecc02cfd67d.zip
Add alacritty-msg manpage to documentation
The original multiwindow PR added a new manpage, however this was not properly documented or included in our CI. This patch resolves these issues.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index a509a8de..ad2bc597 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@ TARGET = alacritty
ASSETS_DIR = extra
RELEASE_DIR = target/release
MANPAGE = $(ASSETS_DIR)/alacritty.man
+MANPAGE-MSG = $(ASSETS_DIR)/alacritty-msg.man
TERMINFO = $(ASSETS_DIR)/alacritty.info
COMPLETIONS_DIR = $(ASSETS_DIR)/completions
COMPLETIONS = $(COMPLETIONS_DIR)/_alacritty \
@@ -45,6 +46,7 @@ $(APP_NAME)-%: $(TARGET)-%
@mkdir -p $(APP_EXTRAS_DIR)
@mkdir -p $(APP_COMPLETIONS_DIR)
@gzip -c $(MANPAGE) > $(APP_EXTRAS_DIR)/alacritty.1.gz
+ @gzip -c $(MANPAGE-MSG) > $(APP_EXTRAS_DIR)/alacritty-msg.1.gz
@tic -xe alacritty,alacritty-direct -o $(APP_EXTRAS_DIR) $(TERMINFO)
@cp -fRp $(APP_TEMPLATE) $(APP_DIR)
@cp -fp $(APP_BINARY) $(APP_BINARY_DIR)