2021-10-24 19:35:22 +02:00
|
|
|
all: hanoi pile file
|
2021-10-24 14:23:33 +02:00
|
|
|
|
|
|
|
hanoi: hanoi.c
|
|
|
|
cc hanoi.c -o hanoi
|
2021-09-07 13:43:20 +02:00
|
|
|
|
2021-10-24 21:22:59 +02:00
|
|
|
liste-chainee: liste-chainee.c
|
|
|
|
cc liste-chainee.c -o liste-chainee
|
|
|
|
|
2021-09-07 15:43:01 +02:00
|
|
|
pile: pile-dynamique.c
|
2021-10-24 14:23:33 +02:00
|
|
|
cc pile-dynamique.c -o pile-dynamique
|
2021-09-07 13:43:20 +02:00
|
|
|
|
2021-09-07 15:43:01 +02:00
|
|
|
file: file-dynamique.c
|
2021-10-24 14:23:33 +02:00
|
|
|
cc file-dynamique.c -o file-dynamique
|
2021-09-07 13:43:20 +02:00
|
|
|
|
|
|
|
clean:
|
2021-10-24 21:22:59 +02:00
|
|
|
rm liste-chainee file-dynamique pile-dynamique hanoi
|