aboutsummaryrefslogtreecommitdiff
path: root/build/algorithm
AgeCommit message (Collapse)AuthorFilesLines
2015-11-29Allow for target group members to remain unresolvedBoris Kolpackov1-2/+4
This, for example, can happen when we have a fallback rule for dist(update) or configure(update).
2015-08-27Dist module/meta-operation initial implementationBoris Kolpackov1-0/+3
2015-08-13Rework postponed logicBoris Kolpackov1-4/+6
Specifically, now postponed is only used by the execution mode logic and rules should not return it directly.
2015-08-03match_only and dependents count rework, part 1Boris Kolpackov1-2/+14
2015-07-31Essential install module functionalityBoris Kolpackov1-2/+1
2015-07-24Add support for generated test input/outputBoris Kolpackov1-0/+18
2015-07-24Further test module developmentBoris Kolpackov1-2/+10
2015-07-01Clean up group state, mtime designBoris Kolpackov1-1/+5
2015-07-01Cleanup group "see through" designBoris Kolpackov1-8/+21
2015-06-30Group "see through" iteration, take 1Boris Kolpackov1-4/+9
2015-06-26Part two of dependency injection with auto-generation supportBoris Kolpackov1-1/+10
2015-06-24First take on the cli module plus necessary infrastructureBoris Kolpackov1-1/+8
2015-06-22Remove prerequisite rewriting from inject_parent_fsdir()Boris Kolpackov1-1/+2
2015-06-22Remove prerequisite rewriting for c/cxx chainingBoris Kolpackov1-3/+24
2015-06-18Move path and filesystem from build2 to libbutlBoris Kolpackov1-1/+1
2015-05-11Correct copyrightBoris Kolpackov1-1/+1
2015-04-26Rework resolved prerequisite targets storageBoris Kolpackov1-19/+10
2015-04-24Implement lib/liba/libso{} target group, shared/static library buildBoris Kolpackov1-4/+25
2015-04-17Add support for target groups, use to handle obj/obja/objso object targetsBoris Kolpackov1-7/+20
2015-04-13Add separate type to represent directory pathsBoris Kolpackov1-1/+1
2015-03-25Configure/disfigure src_root saving/removing support; fsdir{} injectionBoris Kolpackov1-0/+7
We can now build out-of-tree.
2015-03-13Add support for "first" and "last" execution modesBoris Kolpackov1-0/+5
2015-03-13Add postponed recipe execution supportBoris Kolpackov1-3/+4
2015-03-12Implement clean operationBoris Kolpackov1-3/+17
2015-03-10Further operation implementationBoris Kolpackov1-15/+19
2015-02-23Redo rule match/build logicBoris Kolpackov1-2/+44
Now the rule is fully responsible for searching, matching, and building of prerequisites.
2015-01-16Implement rule chaining for cxx::linkBoris Kolpackov1-1/+1
2014-12-18Initial support for loading dependency info from buildfilesBoris Kolpackov1-0/+20
Also a new iteration on the overall architecture. Now, for the first time, build can read the buildfile and build itself. g++-4.9 -std=c++14 -g -I.. -o bd bd.cxx algorithm.cxx scope.cxx parser.cxx lexer.cxx target.cxx prerequisite.cxx rule.cxx native.cxx cxx/target.cxx cxx/rule.cxx process.cxx timestamp.cxx path.cxx g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx g++-4.9 -std=c++14 -g -I../../.. -o driver driver.cxx ../../../build/lexer.cxx ../../../build/parser.cxx ../../../build/scope.cxx ../../../build/target.cxx ../../../build/native.cxx ../../../build/prerequisite.cxx ../../../build/path.cxx ../../../build/timestamp.cxx