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.
This commit is contained in:
Andrea Rogers 2024-03-06 19:55:53 -06:00
commit 0a365ae4e8

View file

@ -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)))