diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-11-22 05:21:31 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-11-22 05:21:31 +0100 |
| commit | ef74d8b236ba8c62ddb190ce64ea3d8b593ad1eb (patch) | |
| tree | 6bc540d8a1c0dd1b8a086824e00a5332f83e6081 /Makefile | |
| parent | a917ec555ef8419bf638d6b8f87c965dff96e9e1 (diff) | |
| download | libasm-ef74d8b236ba8c62ddb190ce64ea3d8b593ad1eb.tar.gz libasm-ef74d8b236ba8c62ddb190ce64ea3d8b593ad1eb.tar.bz2 libasm-ef74d8b236ba8c62ddb190ce64ea3d8b593ad1eb.zip | |
ft_atoi_base.s without the negative and base part
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -6,7 +6,7 @@ # By: cacharle <marvin@42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/11/22 02:56:22 by cacharle #+# #+# # -# Updated: 2019/11/22 03:02:47 by cacharle ### ########.fr # +# Updated: 2019/11/22 03:58:18 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -15,7 +15,8 @@ NAME = libasm.a CC = gcc CCFLAGS = -masm=intel -m64 -ASMSRC = ft_strlen.s ft_strcpy.s ft_strcmp.s ft_write.s ft_read.s ft_strdup.s +ASMSRC = ft_strlen.s ft_strcpy.s ft_strcmp.s ft_write.s ft_read.s ft_strdup.s \ + ft_atoi_base.s ASMOBJ = $(ASMSRC:.s=.o) RM = rm -f @@ -31,6 +32,7 @@ test: all %.o: %.s $(CC) $(CCFLAGS) -c -o $@ $< + @#nasm -f macho64 -o $@ $< clean: $(RM) $(ASMOBJ) |
