aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-08 04:44:12 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-08 21:17:22 +0100
commitfcc8ce8503f42980e6e8ed390363c8e8dc961363 (patch)
tree2c20084aa0db8ea0b913cee02d0342d26f8aade6 /Makefile
parent56150213f54af9a37abf8a1a719d51eb4491087c (diff)
downloadlibasm-fcc8ce8503f42980e6e8ed390363c8e8dc961363.tar.gz
libasm-fcc8ce8503f42980e6e8ed390363c8e8dc961363.tar.bz2
libasm-fcc8ce8503f42980e6e8ed390363c8e8dc961363.zip
Added ft_list_remove_if
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2925114..3bf5764 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2019/11/22 02:56:22 by cacharle #+# #+# #
-# Updated: 2020/02/08 00:14:34 by cacharle ### ########.fr #
+# Updated: 2020/02/08 20:55:14 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -22,7 +22,7 @@ NASMFLAGS = -f macho64
NAME = libasm.a
ASMSRC = ft_strlen.s ft_strcpy.s ft_strcmp.s ft_write.s ft_read.s \
ft_strdup.s ft_atoi_base.s ft_list_push_front.s \
- ft_list_size.s ft_list_sort.s #ft_list_remove_if.s
+ ft_list_size.s ft_list_sort.s ft_list_remove_if.s
ASMOBJ = $(ASMSRC:.s=.o)
all: $(NAME)