summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDominik Kaiser2024-05-02 12:06:35 +0200
committerDominik Kaiser2024-05-02 12:06:35 +0200
commitc6f630aaee32d97adcc9426e9e78b9160377d0a0 (patch)
treedbd2e362ab0d81616f82b6e21763442a52a621af /Makefile
parentf4c8da1124e7377632f88bdd56e7b1b91a4986e9 (diff)
downloadlibft-c6f630aaee32d97adcc9426e9e78b9160377d0a0.tar.gz
libft-c6f630aaee32d97adcc9426e9e78b9160377d0a0.zip
Don't print if there's nothing to do
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
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)