JLT>Root |
|||
| (2 versions intermédiaires par le même utilisateur non affichées) | |||
| Ligne 3 : | Ligne 3 : | ||
make VERBOSE=1 or make V=1 | make VERBOSE=1 or make V=1 | ||
}} | }} | ||
== Variables du Makefile == | |||
{{syntaxhighlight |lang=make|code= | |||
all: library.cpp main.cpp | |||
}} | |||
* $@ correspond à all | |||
* $< correspond à library.cpp | |||
* $^ correspond à library.cpp main.cpp<br> | |||
<br> | |||
== Liens Externes == | == Liens Externes == | ||
make VERBOSE=1 or make V=1
all: library.cpp main.cpp