feature: added execution of commands from path

This commit is contained in:
Tanguy MAZE
2019-09-27 17:00:03 +02:00
parent aa8e971688
commit 58459bc0c1
5 changed files with 209 additions and 13 deletions

View File

@@ -6,7 +6,7 @@
# By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/03/27 16:51:02 by tmaze #+# #+# #
# Updated: 2019/09/20 14:39:42 by tmaze ### ########.fr #
# Updated: 2019/09/27 16:13:51 by tmaze ### ########.fr #
# #
#******************************************************************************#
@@ -27,7 +27,7 @@ endif
# Compilator
CC = gcc
FLAGS = -Wall -Wextra -Werror
FLAGS = -Wall -Wextra -Werror -g
# Folders
LIBDIR = libft
@@ -42,6 +42,7 @@ SRC = main.c \
cmd_unsetenv.c \
cmd_cd.c \
cmd_echo.c \
ms_exec.c \
ms_env.c
OBJ = $(SRC:.c=.o)