From a84e797e89a2eed87358ea20ee2ade7b7a1e0868 Mon Sep 17 00:00:00 2001 From: Willem Haffmans Date: Sun, 24 Nov 2024 20:44:00 +0000 Subject: [PATCH] fix dots in makelfile --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 2259aa4..c96ba98 100644 --- a/Makefile +++ b/Makefile @@ -52,18 +52,18 @@ $(LIBFT): @$(MAKE) -sC libft $(NAME): $(OBJECTS) $(OBJECTS_PUSH_SWAP) - @echo "Linking the object files in the executable." + @echo "Linking the object files in the push_swap executable" @$(CC) $(CFLAGS) $(OBJECTS) $(OBJECTS_PUSH_SWAP) $(LDFLAGS) $(LDLIBS) -o $(NAME) checker: $(OBJECTS) $(OBJECTS_CHECKER) - @echo "Linking the object files in the executable." + @echo "Linking the object files in the checker executable" @$(CC) $(CFLAGS) $(OBJECTS) $(OBJECTS_CHECKER) $(LDFLAGS) $(LDLIBS) -o checker $(OBJ_PATH): @mkdir -p $@ $(OBJ_PATH)/%.o: %.c $(LIBFT) | $(OBJ_PATH) - @echo "Compiling $@." + @echo "Compiling $@" @$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@ clean: