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: