From b885ec9cd3b40b9bcb91dadb834d9ecc02cfd67d Mon Sep 17 00:00:00 2001 From: Christian Duerr Date: Mon, 8 Nov 2021 23:22:09 +0000 Subject: 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. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Makefile') 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) -- cgit