From aad4daca0a727ce36b4ed0c74a2f7e600bde94e3 Mon Sep 17 00:00:00 2001 From: thibaud <thibaud.hegelbac@etu.hesge.ch> Date: Tue, 3 Dec 2024 14:47:45 +0100 Subject: [PATCH] ajout des fichiers --- makefile | 7 +++++++ matrix.c | 0 matrix.h | 0 3 files changed, 7 insertions(+) create mode 100644 makefile create mode 100644 matrix.c create mode 100644 matrix.h diff --git a/makefile b/makefile new file mode 100644 index 0000000..84cc947 --- /dev/null +++ b/makefile @@ -0,0 +1,7 @@ +matrix: matrix.c matrix.h + gcc matrix.c -o matrix -Wall -Wextra -pedantic -fsanitize=address -fsanitize=leak + +clean: + rm -f *.o string_manip + +rebuild: clean string_manip \ No newline at end of file diff --git a/matrix.c b/matrix.c new file mode 100644 index 0000000..e69de29 diff --git a/matrix.h b/matrix.h new file mode 100644 index 0000000..e69de29 -- GitLab