aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-01-19 08:30:03 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-02 22:11:17 +0100
commitf4e1232957b1270da70f57fcad4cd6371947e442 (patch)
treeeb78d0ed1cf3ad3ee7797e8359b0802fc1159808 /Makefile
parentd22609e03717283e85a23587203af1b8b7d2fde2 (diff)
downloadlibft-f4e1232957b1270da70f57fcad4cd6371947e442.tar.gz
libft-f4e1232957b1270da70f57fcad4cd6371947e442.tar.bz2
libft-f4e1232957b1270da70f57fcad4cd6371947e442.zip
Added algo functions ft_qsort, ft_is_set, ft_memswap, ft_compar_int
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 392b40c..eeba965 100644
--- a/Makefile
+++ b/Makefile
@@ -6,13 +6,15 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/10/08 15:45:53 by cacharle #+# #+# #
-# Updated: 2020/01/16 07:45:42 by cacharle ### ########.fr #
+# Updated: 2020/02/02 22:09:07 by cacharle ### ########.fr #
# #
# **************************************************************************** #
LIB = ar rcs
RM = rm -f
+INCLUDE_DIR = include
+
CC = gcc
CCFLAGS = -Wall -Wextra -Werror
@@ -25,7 +27,7 @@ SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c f
ft_striteri.c ft_strjoin.c ft_strlcat.c ft_strlen.c ft_strmap.c ft_strmapi.c \
ft_strncat.c ft_strncmp.c ft_strncpy.c ft_strnequ.c ft_strnew.c ft_strnstr.c \
ft_strrchr.c ft_split.c ft_strstr.c ft_substr.c ft_strtrim.c ft_tolower.c \
- ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strcount.c
+ ft_toupper.c ft_strlcpy.c ft_calloc.c ft_strcount.c ft_memswap.c ft_qsort.c
OBJ = $(SRC:.c=.o)
INCLUDE = libft.h