Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-08-31 | Rework scoping logic | Boris Kolpackov | 1 | -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-08-14 | Rework meta/operation registration | Boris Kolpackov | 1 | -4/+4 | |
We now have global tables for meta/operation. Plus each can then be enabled on the per-project basis. | |||||
2015-08-13 | Rework postponed logic | Boris Kolpackov | 1 | -7/+24 | |
Specifically, now postponed is only used by the execution mode logic and rules should not return it directly. | |||||
2015-08-03 | Fix few bugs | Boris Kolpackov | 1 | -1/+2 | |
2015-08-03 | match_only and dependents count rework, part 1 | Boris Kolpackov | 1 | -0/+7 | |
2015-07-24 | Add support for generated test input/output | Boris Kolpackov | 1 | -9/+18 | |
2015-07-22 | Fix postponed re-examination logic | Boris Kolpackov | 1 | -1/+4 | |
Now postponed takes precedence over changed. | |||||
2015-07-21 | Improve nested operations support | Boris Kolpackov | 1 | -3/+9 | |
The idea is this: we need to be able to override "conditional, inner for outer" recipes with the "unconditional inner" ones. Here is the concrete scenario: we have {update, test} action and the lib{} target that is both mentioned as a prerequisite of ./ and exe{}, which is a test. At first, we want to ignore lib{} when reached as a prerequisite of ./. But then we get to it via exe{} (which is a test and thus should be updated). At this point we should override the recipe for lib{} with the one that would update it rather than ignore. | |||||
2015-07-15 | Implement project-qualified names/prerequisites, two-stage import | Boris Kolpackov | 1 | -2/+7 | |
2015-07-14 | Add notion of strong/weak amalgamation, make strong new clean boundary | Boris Kolpackov | 1 | -3/+7 | |
2015-07-01 | Group state support | Boris Kolpackov | 1 | -5/+28 | |
2015-07-01 | Cleanup group "see through" design | Boris Kolpackov | 1 | -3/+23 | |
2015-06-30 | Group "see through" iteration, take 1 | Boris Kolpackov | 1 | -1/+8 | |
2015-06-26 | Part two of dependency injection with auto-generation support | Boris Kolpackov | 1 | -0/+11 | |
2015-06-24 | First take on the cli module plus necessary infrastructure | Boris Kolpackov | 1 | -3/+15 | |
2015-06-22 | Remove prerequisite rewriting for c/cxx chaining | Boris Kolpackov | 1 | -2/+21 | |
2015-05-22 | Get rid of gcc, clang warnings (-Wall) | Boris Kolpackov | 1 | -1/+1 | |
2015-05-11 | Correct copyright | Boris Kolpackov | 1 | -1/+1 | |
2015-04-26 | Rework resolved prerequisite targets storage | Boris Kolpackov | 1 | -14/+0 | |
2015-04-24 | Implement lib/liba/libso{} target group, shared/static library build | Boris Kolpackov | 1 | -5/+5 | |
2015-04-17 | Add support for target groups, use to handle obj/obja/objso object targets | Boris Kolpackov | 1 | -4/+20 | |
2015-03-13 | Add support for "first" and "last" execution modes | Boris Kolpackov | 1 | -1/+11 | |
2015-03-12 | Implement clean operation | Boris Kolpackov | 1 | -0/+27 | |
2015-03-10 | Further operation implementation | Boris Kolpackov | 1 | -4/+4 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 1 | -0/+16 | |
Now the rule is fully responsible for searching, matching, and building of prerequisites. |