aboutsummaryrefslogtreecommitdiff
path: root/semestre 3/structures des données/tme/tme3-5/exo1/Makefile
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-10-05 16:28:33 +0200
committerAnhgelus Morhtuuzh <william@herges.fr>2025-10-05 16:28:33 +0200
commit85fbaa4d9381e435be129aa7bc4ea6a472acb2b2 (patch)
treea5d0149a7e70ec1ec24edd2fc0a6c2971e94130a /semestre 3/structures des données/tme/tme3-5/exo1/Makefile
parent4c4b68ac62514cad87e023b877571d1952588d4e (diff)
Cours du 29 au 3 octobre
Diffstat (limited to 'semestre 3/structures des données/tme/tme3-5/exo1/Makefile')
-rw-r--r--semestre 3/structures des données/tme/tme3-5/exo1/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/semestre 3/structures des données/tme/tme3-5/exo1/Makefile b/semestre 3/structures des données/tme/tme3-5/exo1/Makefile
new file mode 100644
index 0000000..0f5d8a6
--- /dev/null
+++ b/semestre 3/structures des données/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