From bd7b07315583a6c7af4b17fbc28823f7090ef1b3 Mon Sep 17 00:00:00 2001 From: Ansa89 Date: Fri, 19 Sep 2014 10:47:25 +0200 Subject: [PATCH] Makefile: fix typo --- build/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Makefile b/build/Makefile index b607812..b1714a8 100644 --- a/build/Makefile +++ b/build/Makefile @@ -50,11 +50,11 @@ all: toxic doc toxic: $(OBJ) @echo " LD $@" - $(CC) $(CFLAGS) -o toxic $(OBJ) $(LDFLAGS) + @$(CC) $(CFLAGS) -o toxic $(OBJ) $(LDFLAGS) %.o: $(SRC_DIR)/%.c @echo " CC $@" - $(CC) $(CFLAGS) -o $*.o -c $(SRC_DIR)/$*.c + @$(CC) $(CFLAGS) -o $*.o -c $(SRC_DIR)/$*.c @$(CC) -MM $(CFLAGS) $(SRC_DIR)/$*.c > $*.d clean: