diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ ASSETS_DIR = extra RELEASE_DIR = target/release MANPAGE = $(ASSETS_DIR)/alacritty.man MANPAGE-MSG = $(ASSETS_DIR)/alacritty-msg.man +CONFIGFILE = alacritty.yml TERMINFO = $(ASSETS_DIR)/alacritty.info COMPLETIONS_DIR = $(ASSETS_DIR)/completions COMPLETIONS = $(COMPLETIONS_DIR)/_alacritty \ @@ -50,6 +51,7 @@ $(APP_NAME)-%: $(TARGET)-% @tic -xe alacritty,alacritty-direct -o $(APP_EXTRAS_DIR) $(TERMINFO) @cp -fRp $(APP_TEMPLATE) $(APP_DIR) @cp -fp $(APP_BINARY) $(APP_BINARY_DIR) + @cp -fp $(CONFIGFILE) $(APP_EXTRAS_DIR)/ @cp -fp $(COMPLETIONS) $(APP_COMPLETIONS_DIR) @touch -r "$(APP_BINARY)" "$(APP_DIR)/$(APP_NAME)" @codesign --remove-signature "$(APP_DIR)/$(APP_NAME)" |