From c6f630aaee32d97adcc9426e9e78b9160377d0a0 Mon Sep 17 00:00:00 2001 From: Dominik Kaiser Date: Thu, 2 May 2024 12:06:35 +0200 Subject: [PATCH] Don't print if there's nothing to do --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index c38115b..bb4d8c1 100644 --- a/Makefile +++ b/Makefile @@ -56,6 +56,7 @@ SRC_FILES = ft_atoi.c \ OBJ_FILES = $(SRC_FILES:.c=.o) all: $(NAME) + @: $(NAME): $(OBJ_FILES) @ar rcs $(NAME) $(OBJ_FILES) -- 2.47.2