From: Dominik Kaiser Date: Sat, 13 Apr 2024 12:52:57 +0000 (+0200) Subject: Add command handling to makefile and setup main X-Git-Url: https://git.dkaiser.de/?a=commitdiff_plain;h=abc12d29679ae6049c9cacbf09a897529377d79c;p=42%2Fpush_swap.git Add command handling to makefile and setup main --- diff --git a/Makefile b/Makefile index 5edb601..9a704a1 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ LIBFT = libft CC = cc CFLAGS = -Wall -Wextra -Werror -SRC_FILES = main.c input_handling.c +SRC_FILES = main.c input_handling.c stack_utils.c command_handling.c OBJ_FILES = $(SRC_FILES:%.c=%.o) LIB_DIR = $(LIBFT) diff --git a/command_handling.c b/command_handling.c index e25f47c..b1fe85a 100644 --- a/command_handling.c +++ b/command_handling.c @@ -6,11 +6,10 @@ /* By: dkaiser