Makefile triggers updates only to changed files (by timestamp)
main: main.o module1.o module2.o
g++ main.o module1.o module2.o -o main
To build the file main, I need to first make sure that targets
main.o
,module1.o
andmodule2.o
are up to date; then I need to call the following command...(...)
To be "up to date" means that the last-modified time of [output file] is newer than any of its prerequisites' last-modified times
— https://stackoverflow.com/a/4349717 ↗
React redraws UI based on state change, recalculating only what changed
Are there any incremental computation systems that treat inputs not as mutable cells, but model the whole system as a persistent data structure, and updates create a new, structure-sharing instance?
— https://twitter.com/MarijnJH/status/1191720489523318786 ↗
133 words last tended to on 2024-04-10 — let me know what you think