diff options
| author | Dominik Kaiser | 2024-05-02 12:06:35 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2024-05-02 12:06:35 +0200 |
| commit | c6f630aaee32d97adcc9426e9e78b9160377d0a0 (patch) | |
| tree | dbd2e362ab0d81616f82b6e21763442a52a621af /Makefile | |
| parent | f4c8da1124e7377632f88bdd56e7b1b91a4986e9 (diff) | |
| download | libft-c6f630aaee32d97adcc9426e9e78b9160377d0a0.tar.gz libft-c6f630aaee32d97adcc9426e9e78b9160377d0a0.zip | |
Don't print if there's nothing to do
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |
