aboutsummaryrefslogtreecommitdiff
path: root/build/search.cxx
AgeCommit message (Collapse)AuthorFilesLines
2015-09-08Rework diagnostics verbosity, add quiet mode/optionBoris Kolpackov1-6/+6
2015-08-31Rework scoping logicBoris Kolpackov1-2/+2
Now the src directory is entered into the scope map and points to the same scope as out. This means that targets that are in src, not out (e.g., source files) will "see" rules, variables, etc. This becomes important when we try, for example, to install a source file (say, a header) from src: we need the rule as well as the install.* variables.
2015-07-01Clean up group state, mtime designBoris Kolpackov1-2/+2
2015-06-30Group "see through" iteration, take 1Boris Kolpackov1-0/+4
2015-06-24First take on the cli module plus necessary infrastructureBoris Kolpackov1-13/+32
2015-06-18Move path_mtime to filesystem, rename file_mtime, follow symlinksBoris Kolpackov1-1/+3
2015-06-18Move path and filesystem from build2 to libbutlBoris Kolpackov1-3/+2
2015-05-11Correct copyrightBoris Kolpackov1-1/+1
2015-04-26Rework resolved prerequisite targets storageBoris Kolpackov1-4/+4
2015-04-24Implement lib/liba/libso{} target group, shared/static library buildBoris Kolpackov1-1/+3
2015-04-17Add support for target groups, use to handle obj/obja/objso object targetsBoris Kolpackov1-30/+30
2015-04-13Add separate type to represent directory pathsBoris Kolpackov1-4/+4
2015-04-07Provide more convenient access to root scopeBoris Kolpackov1-1/+1
2015-03-09Build according to buildspecBoris Kolpackov1-1/+1
At this stage operations are still ignored.
2015-03-03Implement new default target logic, canonical directory name (empty value)Boris Kolpackov1-0/+1
The logic is as follows: if we have an explicit current directory target, then that's the default target. Otherwise, we take the first target and use it as a prerequisite to create an implicit current directory target, effectively making it the default target via an alias. If there are no targets in this buildfile, then we don't do anything.
2015-02-23Redo rule match/build logicBoris Kolpackov1-0/+144
Now the rule is fully responsible for searching, matching, and building of prerequisites.