Remove profile from makefile

This commit is contained in:
Evie Litherland-Smith 2023-02-25 15:30:00 +00:00
parent 9d4e861afb
commit bbdaa20adc

View file

@ -15,7 +15,7 @@ all: link install
clean: unlink uninstall
link: $(HOME)/.profile $(CONFIG_TARGETS) $(SSH_TARGETS) $(HOME)/.ssh/sockets
link: $(CONFIG_TARGETS) $(SSH_TARGETS) $(HOME)/.ssh/sockets
unlink:
for link in $(CONFIG_TARGETS); do rm "$$link"; done
@ -37,9 +37,6 @@ $(SSH_TARGETS): $(SSH_DIR)/%: ssh/%
$(CONFIG_TARGETS) $(SSH_TARGETS):
ln -s $(PWD)/$? -t $$(dirname $@)
$(HOME)/.profile: .profile
ln -s $(PWD)/$? -t $$(dirname $@)
$(LAZY_DIR):
git clone --depth 1 $(LAZY_REPO) $@