diff options
| author | Cabergs Charles <cacharle@w-r4-p5.s19.be> | 2019-10-07 16:33:51 +0200 |
|---|---|---|
| committer | Cabergs Charles <cacharle@w-r4-p5.s19.be> | 2019-10-07 16:33:51 +0200 |
| commit | 8adeef1b50a3a819cf6525af94f1fbce62465a7e (patch) | |
| tree | 2076ffde529f8f5350515105645353f76ee1f5e9 /Makefile | |
| parent | ea6d7d262950a918f1888d7b8d9f6bceb1aaf12e (diff) | |
| download | libft-8adeef1b50a3a819cf6525af94f1fbce62465a7e.tar.gz libft-8adeef1b50a3a819cf6525af94f1fbce62465a7e.tar.bz2 libft-8adeef1b50a3a819cf6525af94f1fbce62465a7e.zip | |
Added calloc and strlcpy, rename out of date
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -9,8 +9,8 @@ SRC = ft_atoi.c ft_bzero.c ft_isalnum.c ft_isalpha.c ft_isascii.c ft_isdigit.c f ft_strclr.c ft_strcmp.c ft_strcpy.c ft_strdel.c ft_strdup.c ft_strequ.c ft_striter.c \ 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_strsplit.c ft_strstr.c ft_strsub.c ft_strtrim.c ft_tolower.c \ - ft_toupper.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 OBJ = $(SRC:.c=.o) all: $(NAME) @@ -19,7 +19,7 @@ $(NAME): $(OBJ) libft.h ar rc $(NAME) $(OBJ) %.o: %.c - $(CC) $(CCFLAGS) -fPIC -c -o $@ $< # /!\ fPIC + $(CC) $(CCFLAGS) -c -o $@ $< clean: rm -f $(OBJ) |
