From: Dominik Kaiser Date: Thu, 2 May 2024 10:06:35 +0000 (+0200) Subject: Don't print if there's nothing to do X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=c6f630aaee32d97adcc9426e9e78b9160377d0a0;p=42%2Flibft.git Don't print if there's nothing to do --- 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)