human

convert bytes to human readable formats
git clone git://git.2f30.org/human
Log | Files | Refs | README | LICENSE

commit 83ff4e8be78d328256b34a9c624654c6bbf45322
parent 8c6c2473ecf5c168e145c8fb784caee76bb97e18
Author: z3bra <willyatmailoodotorg>
Date:   Mon, 11 Apr 2016 01:01:35 +0200

Fix makefile's use of echo

Diffstat:
MMakefile | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -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