From 553131d9e04bb56642726fad9b3b4029406fe667 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Fri, 31 Mar 2023 13:14:08 +0100 Subject: [PATCH] Fix broken linking in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 302d0eb9..839eea88 100644 --- a/Makefile +++ b/Makefile @@ -28,8 +28,8 @@ $(CONFIG_DIR) $(SSH_DIR): link: $(CONFIG_TARGETS) $(SSH_DIR)/config.d $(HOME)/.inputrc $(CONFIG_TARGETS): $(CONFIG_DIR)/%: config/% -$(SSH_DIR)/*: $(SSH_DIR)/%: ssh/% -$(HOME)/*: $(HOME)/%: % +$(SSH_DIR)/config.d: $(SSH_DIR)/%: ssh/% +$(HOME)/.inputrc: $(HOME)/%: % $(CONFIG_TARGETS) $(SSH_DIR)/config.d $(HOME)/.inputrc: ln -s $(PWD)/$? $@