-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsources.mk
More file actions
41 lines (37 loc) · 842 Bytes
/
Copy pathsources.mk
File metadata and controls
41 lines (37 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
VPATH += core
SRC += vdprintf.c
SRC += parse_specifier.c
SRC += pop_length_mod.c
SRC += printf.c
SRC += utils.c
VPATH += base
SRC += my_intlen.c
SRC += my_putnbr.c
SRC += my_putnbr_base.c
SRC += my_stridx.c
SRC += my_strncmp.c
SRC += my_strnlen.c
SRC += my_pow.c
VPATH += handlers
SRC += conversion_base.c
SRC += conversion_extra.c
SRC += conversion_float.c
SRC += conversion_numerical.c
VPATH += float
SRC += double_to_str.c
SRC += stringify_helpers.c
SRC += split_parts.c
VPATH += tests
TSRC += test_double_to_str.c
TSRC += test_double_to_str_sci.c
TSRC += test_my_intlen.c
TSRC += test_my_pow.c
TSRC += test_my_putnbr.c
TSRC += test_my_putnbr_base.c
TSRC += test_my_putnbr_base_16.c
TSRC += test_my_stridx.c
TSRC += test_my_strncmp.c
TSRC += test_my_strnlen.c
TSRC += test_printf.c
TSRC += test_printf_prec_star.c
TSRC += test_setup.c