diff --git a/Makefile b/Makefile index 388a4ac..5256261 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # By: adjoly +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2023/11/01 11:03:22 by adjoly #+# #+# # -# Updated: 2024/03/13 13:21:22 by adjoly ### ########.fr # +# Updated: 2024/03/18 14:35:22 by adjoly ### ########.fr # # # # **************************************************************************** # @@ -44,8 +44,6 @@ OBJS = $(addprefix $(OBJSDIR), $(SRCS:.c=.o)) FLAGS = -Werror -Wall -Wextra -g -HEADERS = so_long.h - LIB = libft/libft.a \ $(NAME): $(OBJS) @@ -55,7 +53,7 @@ $(NAME): $(OBJS) $(OBJSDIR)%.o: $(SRCDIR)%.c @mkdir -p $(@D) - @$(CC) $(FLAGS) -I $(HEADERS) $< -c -o $@ + @$(CC) $(FLAGS) $< -c -o $@ @echo "[✔] $< compiled" all: $(NAME) diff --git a/libft b/libft index 336510d..ffdce71 160000 --- a/libft +++ b/libft @@ -1 +1 @@ -Subproject commit 336510d78ba3c21cc354658d2841ff4df99632c8 +Subproject commit ffdce716a204d1e620f0f6c5c473f431bef1b3a6 diff --git a/obj/algo/algo.o b/obj/algo/algo.o new file mode 100644 index 0000000..f59ac65 Binary files /dev/null and b/obj/algo/algo.o differ diff --git a/obj/algo/get_min_max.o b/obj/algo/get_min_max.o new file mode 100644 index 0000000..d65ddc7 Binary files /dev/null and b/obj/algo/get_min_max.o differ diff --git a/obj/algo/insertion.o b/obj/algo/insertion.o new file mode 100644 index 0000000..accbb9f Binary files /dev/null and b/obj/algo/insertion.o differ diff --git a/obj/algo/median.o b/obj/algo/median.o new file mode 100644 index 0000000..46141a2 Binary files /dev/null and b/obj/algo/median.o differ diff --git a/obj/algo/small_mouv.o b/obj/algo/small_mouv.o new file mode 100644 index 0000000..a942909 Binary files /dev/null and b/obj/algo/small_mouv.o differ diff --git a/obj/main.o b/obj/main.o new file mode 100644 index 0000000..a6a611c Binary files /dev/null and b/obj/main.o differ diff --git a/obj/operations/ft_pushstack.o b/obj/operations/ft_pushstack.o new file mode 100644 index 0000000..749911f Binary files /dev/null and b/obj/operations/ft_pushstack.o differ diff --git a/obj/operations/ft_reverserotate.o b/obj/operations/ft_reverserotate.o new file mode 100644 index 0000000..19e08f4 Binary files /dev/null and b/obj/operations/ft_reverserotate.o differ diff --git a/obj/operations/ft_rotatestack.o b/obj/operations/ft_rotatestack.o new file mode 100644 index 0000000..5cbf347 Binary files /dev/null and b/obj/operations/ft_rotatestack.o differ diff --git a/obj/operations/ft_swapstack.o b/obj/operations/ft_swapstack.o new file mode 100644 index 0000000..2760856 Binary files /dev/null and b/obj/operations/ft_swapstack.o differ diff --git a/obj/parsing.o b/obj/parsing.o new file mode 100644 index 0000000..065f37e Binary files /dev/null and b/obj/parsing.o differ diff --git a/obj/print_stack.o b/obj/print_stack.o new file mode 100644 index 0000000..47fd69d Binary files /dev/null and b/obj/print_stack.o differ diff --git a/obj/stack/ft_stackadd_back.o b/obj/stack/ft_stackadd_back.o new file mode 100644 index 0000000..c4687a8 Binary files /dev/null and b/obj/stack/ft_stackadd_back.o differ diff --git a/obj/stack/ft_stackadd_front.o b/obj/stack/ft_stackadd_front.o new file mode 100644 index 0000000..e037279 Binary files /dev/null and b/obj/stack/ft_stackadd_front.o differ diff --git a/obj/stack/ft_stackclear.o b/obj/stack/ft_stackclear.o new file mode 100644 index 0000000..510ee92 Binary files /dev/null and b/obj/stack/ft_stackclear.o differ diff --git a/obj/stack/ft_stackdelone.o b/obj/stack/ft_stackdelone.o new file mode 100644 index 0000000..987d30a Binary files /dev/null and b/obj/stack/ft_stackdelone.o differ diff --git a/obj/stack/ft_stacklast.o b/obj/stack/ft_stacklast.o new file mode 100644 index 0000000..7b5cd9c Binary files /dev/null and b/obj/stack/ft_stacklast.o differ diff --git a/obj/stack/ft_stacknew.o b/obj/stack/ft_stacknew.o new file mode 100644 index 0000000..801231c Binary files /dev/null and b/obj/stack/ft_stacknew.o differ diff --git a/obj/stack/ft_stacksize.o b/obj/stack/ft_stacksize.o new file mode 100644 index 0000000..7714de8 Binary files /dev/null and b/obj/stack/ft_stacksize.o differ diff --git a/obj/utils/is_sorted.o b/obj/utils/is_sorted.o new file mode 100644 index 0000000..add2937 Binary files /dev/null and b/obj/utils/is_sorted.o differ diff --git a/obj/utils/print_error.o b/obj/utils/print_error.o new file mode 100644 index 0000000..99b048f Binary files /dev/null and b/obj/utils/print_error.o differ diff --git a/push_swap b/push_swap new file mode 100755 index 0000000..4a306e9 Binary files /dev/null and b/push_swap differ