Récupérer le nom de la cible courante dans un Makefile

Publié le 03/11/2024 • Actualisé le 03/11/2024


English language detected! 🇬🇧

  We noticed that your browser is using English. Do you want to read this post in this language?

Read the english version 🇬🇧 Close

Dans ce bout de code, nous voyons comment récupérer le nom de la cible courante dans un Makefile. C'est une variable automatique, jetez un coup d'œil au lien vers la documentation ci-dessous pour avoir plus d'explications.


show-current-target:
    echo 'Making $(@)...'
    echo 'Making $@...'

# Outputs:
# echo 'Making show-current-target...'
# Making show-current-target...
# echo 'Making show-current-target'
# Making show-current-target...

 Plus sur Stackoverflow   Lire la doc  Snippet aléatoire

  Travaillez avec moi !