summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 19:42:46 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-04-23 19:42:46 +0200
commit312bd95df03672f38df123038f719b113ac07ecc (patch)
tree64fe221fe92c8a677efe2e871e9cd33fe147ae4d /Makefile
parentParsed bin path in $PATH, now time to execve(2) (diff)
download42-minishell-312bd95df03672f38df123038f719b113ac07ecc.tar.gz
42-minishell-312bd95df03672f38df123038f719b113ac07ecc.tar.bz2
42-minishell-312bd95df03672f38df123038f719b113ac07ecc.tar.xz
42-minishell-312bd95df03672f38df123038f719b113ac07ecc.tar.zst
42-minishell-312bd95df03672f38df123038f719b113ac07ecc.zip
execve(2) not quite working
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 0 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 6f6008f..b367985 100644
--- a/Makefile
+++ b/Makefile
@@ -53,8 +53,6 @@ OBJS = $(patsubst ${SRCS_DIR}%.c,${OBJS_DIR}%.o,${SRCS})
#------------------------------------------------------------------------------#
NAME = minishell
#------------------------------------------------------------------------------#
-HISTFILE = minishell_history
-#------------------------------------------------------------------------------#
LFT_SRCS = $(shell find ${LFT_SRCS_DIR} -name "*.c")
#==============================================================================#
#-------------------------------- COMPILER ------------------------------------#
@@ -66,8 +64,6 @@ CFLAGS += -Wextra
CFLAGS += -Werror
CFLAGS += -pedantic
#------------------------------------------------------------------------------#
-CDEFS = -DFT_HISTFILE=${HISTFILE}
-#------------------------------------------------------------------------------#
LDFLAGS = -L${LFT_DIR}
LDFLAGS += -lft
#==============================================================================#