diff --git a/emacs/makefile b/emacs/makefile index a9f47b8..4847649 100644 --- a/emacs/makefile +++ b/emacs/makefile @@ -41,4 +41,4 @@ endif remove: $(info => Removing Emacs config) - @ $(rm_link) $(EMACSD) + $(rm_link) $(EMACSD) diff --git a/tmux/makefile b/tmux/makefile index d0d9997..90e2283 100644 --- a/tmux/makefile +++ b/tmux/makefile @@ -18,4 +18,4 @@ update: remove: $(info => Remvoing tmux config) - @ $(rm_link) $(TARGET) + $(rm_link) $(TARGET) diff --git a/vim/makefile b/vim/makefile index 0b73f7d..6659ff0 100644 --- a/vim/makefile +++ b/vim/makefile @@ -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) diff --git a/waybar/makefile b/waybar/makefile index 538b311..4ea7137 100644 --- a/waybar/makefile +++ b/waybar/makefile @@ -23,6 +23,6 @@ endif remove: $(info => Removing waybar) - @ $(rm_link) $(TARGET) + $(rm_link) $(TARGET) .PHONY: install update init remove