From 0a365ae4e8181fc28cdf9826d5ef30aa203dca1f Mon Sep 17 00:00:00 2001 From: Andrea Rogers Date: Wed, 6 Mar 2024 19:55:53 -0600 Subject: [PATCH] Makefile: Correct profileds target inclusion The "install" target was working improperly because of line 4 not containing the proper "profileds" target name as a dependency. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index 75b4233..6010884 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -1,7 +1,7 @@ INSTALL += $(HOME)/.profile \ $(HOME)/.vim/bundle/Vundle.vim $(HOME)/.vimrc \ $(HOME)/.aliases aliases \ - $(HOME)/.profile.d profile.d + $(HOME)/.profile.d profileds ALIASES = $(foreach a,$(wildcard .aliases/*),$(subst .aliases/,$(HOME)/.aliases/,$(a))) PROFILEDS = $(foreach p,$(wildcard .profile.d/*),$(subst .profile.d/,$(HOME)/.profile.d/,$(p)))