tFix makefile's use of echo - human - print numbers in human-readable format
 (HTM) git clone git://z3bra.org/human
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 83ff4e8be78d328256b34a9c624654c6bbf45322
 (DIR) parent 8c6c2473ecf5c168e145c8fb784caee76bb97e18
 (HTM) Author: z3bra <willyatmailoodotorg>
       Date:   Mon, 11 Apr 2016 01:01:35 +0200
       
       Fix makefile's use of echo
       
       Diffstat:
         M Makefile                            |       4 ++--
       
       1 file changed, 2 insertions(+), 2 deletions(-)
       ---
 (DIR) diff --git a/Makefile b/Makefile
       t@@ -11,11 +11,11 @@ LDFLAGS =
        .PHONY : all clean install uninstall
        
        .c.o:
       -        @echo -e "CC $<"
       +        @echo "CC $<"
                @${CC} -c ${CFLAGS} $< -o $@
        
        human: human.o
       -        @echo -e "LD human"
       +        @echo "LD human"
                @${LD} $^ -o $@ ${LDFLAGS}
        
        all : human human.1