✅ Перевірена відповідь на це питання доступна нижче. Наші рішення, перевірені спільнотою, допомагають краще зрозуміти матеріал.
Voici un morceau de code d'un makefile :
all: step2 step3 step4 <first command>
step2: step3 <second command>
step3: <third command>
step4: step2 step3 <final command>
.PHONY: step3
Dans le répertoire du makefile, nous avons les fichiers suivants avec l'heure de leurs dernière modifications :
Quelles commandes vont être exécutées quand vous tapez make ?