mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-04-27 07:33:57 +00:00
make.html: english corrections
This commit is contained in:
parent
b4ad0b8002
commit
2508aa0269
@ -6,7 +6,7 @@ filename: Makefile
|
|||||||
---
|
---
|
||||||
|
|
||||||
A Makefile defines a graph of rules for creating a target (or targets).
|
A Makefile defines a graph of rules for creating a target (or targets).
|
||||||
It's purpose is the do the minimum amount of work needed to update a
|
Its purpose is to do the minimum amount of work needed to update a
|
||||||
target to the most recent version of the source. Famously written over a
|
target to the most recent version of the source. Famously written over a
|
||||||
weekend by Stuart Feldman in 1976, it is still widely used (particularly
|
weekend by Stuart Feldman in 1976, it is still widely used (particularly
|
||||||
on Unix) despite many competitors and criticisms.
|
on Unix) despite many competitors and criticisms.
|
||||||
@ -152,7 +152,7 @@ name4 +=grey
|
|||||||
|
|
||||||
# Pattern-specific variable values (GNU extension).
|
# Pattern-specific variable values (GNU extension).
|
||||||
echo: name2 = Sara # True within the matching rule
|
echo: name2 = Sara # True within the matching rule
|
||||||
# and also within it's remade recursive dependencies
|
# and also within its remade recursive dependencies
|
||||||
# (except it can break when your graph gets too complicated!)
|
# (except it can break when your graph gets too complicated!)
|
||||||
|
|
||||||
# Some variables defined automatically by make.
|
# Some variables defined automatically by make.
|
||||||
|
Loading…
Reference in New Issue
Block a user