Skip to content

Latest commit

 

History

History
27 lines (24 loc) · 453 Bytes

README.md

File metadata and controls

27 lines (24 loc) · 453 Bytes

it-all-depends

Messing around using GNU make for dependency tracking

Example:

bombyx:~/it-all-depends$ make -f tea.mk drink
Fill kettle and switch on
Kettle boiled
Find a mug
Put teabag in mug
Pour water into mug
Brew tea
Drink tea

And we can get make to run multi-core(!):

bombyx:~/it-all-depends$ make -f tea.mk drink -j5
Find a mug
Fill kettle and switch on
Kettle boiled
Put teabag in mug
Pour water into mug
Brew tea
Drink tea