diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-31 01:45:37 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-31 01:45:37 +0100 |
| commit | 0f6cd15b0c7ce2d4d0154ae027985ed640cd543f (patch) | |
| tree | b30dc09db7e42b1e1e9924995b608ee153daddc5 /Makefile | |
| parent | d63d6916249f5b40b81097854d8ca2c9d4d7d071 (diff) | |
| download | ft_printf-0f6cd15b0c7ce2d4d0154ae027985ed640cd543f.tar.gz ft_printf-0f6cd15b0c7ce2d4d0154ae027985ed640cd543f.tar.bz2 ft_printf-0f6cd15b0c7ce2d4d0154ae027985ed640cd543f.zip | |
Handle 'n' flag
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,7 +6,7 @@ # By: cacharle <marvin@42.fr> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2019/10/28 17:41:14 by cacharle #+# #+# # -# Updated: 2019/10/30 23:06:05 by cacharle ### ########.fr # +# Updated: 2019/10/30 23:58:39 by cacharle ### ########.fr # # # # **************************************************************************** # @@ -24,7 +24,7 @@ MAKE = make -j4 NAME = libftprintf.a SRC = ft_printf.c utils.c printer.c parse.c list.c extract.c \ convert_int.c convert_uint.c convert_char.c convert_str.c \ - convert_ptr.c convert_hex.c convert_percent.c + convert_ptr.c convert_hex.c convert_percent.c convert_written.c OBJ = $(SRC:.c=.o) INCLUDE = header.h |
