Removed the silent @ as recipe echoing is disabled.

This commit is contained in:
James Patrick 2019-12-13 12:00:11 -05:00
parent 2ef655378e
commit 4c05d89590
4 changed files with 7 additions and 7 deletions

View File

@ -41,4 +41,4 @@ endif
remove:
$(info => Removing Emacs config)
@ $(rm_link) $(EMACSD)
$(rm_link) $(EMACSD)

View File

@ -18,4 +18,4 @@ update:
remove:
$(info => Remvoing tmux config)
@ $(rm_link) $(TARGET)
$(rm_link) $(TARGET)

View File

@ -12,8 +12,8 @@ ifneq ($(call cmd_exist,vim), true)
$(error Vim not installed)
endif
$(info => Setting up vim)
@ $(mk_link) $(SRC_DIR) $(TARGET_DIR)
@ $(mk_link) $(SRC_DIR)/vimrc ~/.vimrc
$(mk_link) $(SRC_DIR) $(TARGET_DIR)
$(mk_link) $(SRC_DIR)/vimrc ~/.vimrc
update:
ifneq ($(call cmd_exist,vim), true)
@ -25,5 +25,5 @@ endif
remove:
$(info => Removing vim config)
@ $(rm_link) ~/.vimrc
@ $(rm_link) $(TARGET_DIR)
$(rm_link) ~/.vimrc
$(rm_link) $(TARGET_DIR)

View File

@ -23,6 +23,6 @@ endif
remove:
$(info => Removing waybar)
@ $(rm_link) $(TARGET)
$(rm_link) $(TARGET)
.PHONY: install update init remove