From 85fbaa4d9381e435be129aa7bc4ea6a472acb2b2 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Sun, 5 Oct 2025 16:28:33 +0200 Subject: Cours du 29 au 3 octobre --- .../tme/tme3-5/exo1/Makefile" | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 "semestre 3/structures des donn\303\251es/tme/tme3-5/exo1/Makefile" (limited to 'semestre 3/structures des données/tme/tme3-5/exo1/Makefile') diff --git "a/semestre 3/structures des donn\303\251es/tme/tme3-5/exo1/Makefile" "b/semestre 3/structures des donn\303\251es/tme/tme3-5/exo1/Makefile" new file mode 100644 index 0000000..0f5d8a6 --- /dev/null +++ "b/semestre 3/structures des donn\303\251es/tme/tme3-5/exo1/Makefile" @@ -0,0 +1,15 @@ +all: main.o biblioLC.o entreeSortieLC.o + gcc -o main main.o biblioLC.o entreeSortieLC.o + +main.o: main.c + gcc -c main.c + +biblioLC.o: biblioLC.c biblioLC.h + gcc -c biblioLC.c biblioLC.h + +entreeSortieLC.o: entreeSortieLC.c entreeSortieLC.h + gcc -c entreeSortieLC.c entreeSortieLC.h + +clean: + rm *.o + rm *.gch -- cgit v1.2.3