m 1 révision importée |
|||
| (Une version intermédiaire par le même utilisateur non affichée) | |||
| 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