aboutsummaryrefslogtreecommitdiff
path: root/semestre 3/structures des données/tme/tme3-5/exo1/Makefile
diff options
context:
space:
mode:
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