Files
SAE32_2024/tests/test-29-variable-dont-exist/make/Makefile

7 lines
180 B
Makefile
Raw Normal View History

NOM_FICHIER = test.txt
main:
@echo "Création du fichier"
touch $(NOM_FICHIER)
@echo "Essai de création d'un fichier avec une variable qui n'existe pas"
touch $(NOM_FICHIER2)