diff --git a/Makefile b/Makefile index c8ce644..acc5a5b 100644 --- a/Makefile +++ b/Makefile @@ -3,11 +3,11 @@ TARGETS := $(patsubst %,$(HOME)/.%,$(SOURCES)) $(HOME)/.%: % - if [ -f '$^' ] ; then \ + @(if [ -f '$^' ] ; then \ cp -v '$^' '$@' ; \ elif [ -d '$^' ] ; then \ mkdir -p '$@' ; \ - fi + fi) all: $(TARGETS)