aboutsummaryrefslogtreecommitdiff
path: root/build/bin
AgeCommit message (Collapse)AuthorFilesLines
2015-12-03Clean up rule namesBoris Kolpackov1-25/+28
2015-12-02Implement optional module loadingBoris Kolpackov2-13/+19
The syntax is: using? cli Now each module use results in two bool variables: <module>.loaded and <module>.configured. Also implement variable visibility (the above two variables are limited to project).
2015-12-01Reimplement define as dynamic derivation rather than aliasBoris Kolpackov1-21/+7
New syntax: define cli: file The rationale is we need to be able to assign the file extension (using type/pattern-specific variables). And if it is an alias, we will assign it to the original target type. Note that we could still support aliases if we need to. Will need to bring back the id member in target_type that would normally point to itself but for an alias would point to the origin.
2015-12-01Implement support for definition target type aliasesBoris Kolpackov2-24/+31
For example: define cli=file Currently, the semantics is that of a real alias with only name differences that are used for display. See tests/define/buildfile for more use cases.
2015-09-08Rework diagnostics verbosity, add quiet mode/optionBoris Kolpackov1-1/+1
2015-08-31Rework scoping logicBoris Kolpackov1-1/+1
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-08-29New configure meta-operation implementationBoris Kolpackov1-5/+9
Now we search and match (but do not execute) a rule for every operation supported by the project.
2015-08-27Dist module/meta-operation initial implementationBoris Kolpackov1-7/+5
2015-08-24New variable architectureBoris Kolpackov2-13/+28
2015-08-14Rework meta/operation registrationBoris Kolpackov1-0/+7
We now have global tables for meta/operation. Plus each can then be enabled on the per-project basis.
2015-08-14Fix several issues in outer operation recipe override logicBoris Kolpackov1-1/+9
2015-08-03match_only rework, part 2Boris Kolpackov3-37/+46
2015-08-03match_only and dependents count rework, part 1Boris Kolpackov1-19/+29
2015-07-31Cosmetic changeBoris Kolpackov1-1/+1
2015-07-31Essential install module functionalityBoris Kolpackov2-13/+45
2015-07-24Add support for generated test input/outputBoris Kolpackov1-13/+3
2015-07-22Fix postponed re-examination logicBoris Kolpackov1-4/+4
Now postponed takes precedence over changed.
2015-07-20Implement pre/post operation supportBoris Kolpackov1-6/+16
Also, extend execution mode/postponed logic to propagate the postponed target state. At the top, we now re-try postponed targets. This results in the expected behavior when, for example, cleaning two targets with one depending on the other.
2015-07-20Implement support for importing installed librariesBoris Kolpackov1-2/+16
2015-07-14Add notion of strong/weak amalgamation, make strong new clean boundaryBoris Kolpackov1-1/+1
2015-07-08Implement automatic amalgamation discoveryBoris Kolpackov1-4/+4
2015-07-07Rework module architectureBoris Kolpackov2-16/+47
Now the target type and rule maps are in scopes (builtins -- in global scope). We also now have the map of loaded modules in the root scope of each project.
2015-07-02Make few existing file searching optimizationsBoris Kolpackov1-2/+2
2015-07-01Cleanup group "see through" designBoris Kolpackov2-8/+15
2015-06-30Group "see through" iteration, take 1Boris Kolpackov2-9/+9
2015-06-24First take on the cli module plus necessary infrastructureBoris Kolpackov1-0/+7
2015-06-22Remove prerequisite rewriting for c/cxx chainingBoris Kolpackov1-4/+2
2015-06-18Move path and filesystem from build2 to libbutlBoris Kolpackov1-1/+1
2015-06-18Make cxx.export.* machinery work for library chainsBoris Kolpackov1-0/+16
2015-05-22Get rid of gcc, clang warnings (-Wall)Boris Kolpackov1-2/+2
2015-05-22Avoid relying on static initialization orderBoris Kolpackov1-7/+7
2015-05-22Some hoop-jumping to make clang happyBoris Kolpackov1-0/+2
2015-05-11Correct copyrightBoris Kolpackov6-6/+6
2015-04-29Get rid of on-demand configuration for nowBoris Kolpackov3-23/+36
2015-04-24Take one on library linkingBoris Kolpackov4-20/+97
2015-04-24Implement lib/liba/libso{} target group, shared/static library buildBoris Kolpackov4-0/+417