aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2019-11-03 05:47:05 +0100
committerCharles <sircharlesaze@gmail.com>2019-11-03 05:47:05 +0100
commitcbe5c926a8e5747cccf8c15af0cbf1f7ac64d475 (patch)
tree68735123272a3c38d9de14cdf7d000f6d31b3757 /Makefile
parent84b61fcc2602c39e9dc8cd6390f733d6987ccbfe (diff)
downloadft_printf_test-cbe5c926a8e5747cccf8c15af0cbf1f7ac64d475.tar.gz
ft_printf_test-cbe5c926a8e5747cccf8c15af0cbf1f7ac64d475.tar.bz2
ft_printf_test-cbe5c926a8e5747cccf8c15af0cbf1f7ac64d475.zip
Added printf_tests tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d8ba187..0853330 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,8 @@ PYTHON = python3
RM = rm -f
MAKE = make -j4
-SRC = main.c helper.c tests/pft_tests.c tests/moulitest_tests.c tests/printf_tester_tests.c
+SRC = main.c helper.c tests/pft_tests.c tests/moulitest_tests.c tests/printf_tester_tests.c \
+ tests/printf_tests_tests.c
OBJ = $(SRC:.c=.o)
run: all