WIP cd options

Nearly there ^^
added cd options

need to iron out bug with pwd that only shows physical path
This commit is contained in:
Tanguy MAZE
2019-01-30 17:04:15 +01:00
parent f88be73e8b
commit f04da8b91f
2 changed files with 48 additions and 21 deletions

View File

@@ -6,7 +6,7 @@
# By: tmaze <tmaze@student.42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2018/11/22 14:43:33 by tmaze #+# #+# #
# Updated: 2019/01/28 13:20:28 by tmaze ### ########.fr #
# Updated: 2019/01/30 15:50:42 by tmaze ### ########.fr #
# #
#******************************************************************************#
@@ -16,7 +16,7 @@ CCSTD :=
NAME := minishell
SRCS := main.c exec.c cmd_echo.c cmd_cd.c cmd_env.c cmd_setenv.c cmd_unsetenv.c ms_env.c ft_realpath.c
SRCS := main.c exec.c cmd_echo.c cmd_cd.c cmd_env.c cmd_setenv.c cmd_unsetenv.c ms_env.c
OBJS_DIR := objs
OBJS := $(SRCS:.c=.o)
INCLS := -Iincludes -Ilibft