diff --git a/Makefile b/Makefile index 00ad59d..def77af 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,7 @@ NAME = libunit.a AR = ar rcs CC = cc +MAKE += --no-print-directory CCFLAGS = -Wall -Wextra -Werror -MMD -MP -g3 CCFLAGS += -I$(LIBFT_DIR) -I. -Iframework LDFLAGS = -Llibft -lunit -lft -L. @@ -50,8 +51,8 @@ $(RTESTB): FORCE @$(MAKE) -C $(RTESTD) test: $(TESTB) $(RTESTB) - $(TESTB) - $(RTESTB) + @$(TESTB) + @$(RTESTB) FORCE: ; diff --git a/real_tests/Makefile b/real_tests/Makefile index 368ff30..f25ba7a 100644 --- a/real_tests/Makefile +++ b/real_tests/Makefile @@ -1,5 +1,6 @@ NAME = real_tests CC = cc +MAKE += --no-print-directory CCFLAGS = -Wall -Wextra -Werror -MMD -MP SRC = main.c diff --git a/tests/Makefile b/tests/Makefile index e53363c..101005e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,5 +1,6 @@ NAME = tests CC = cc +MAKE += --no-print-directory CCFLAGS = -Wall -Wextra -Werror -MMD -MP -g3 SRC = main.c