aboutsummaryrefslogtreecommitdiff
path: root/build
AgeCommit message (Collapse)AuthorFilesLines
2015-09-09Add initial support for function calls: $func(a b c)Boris Kolpackov1-27/+59
Now it is just a stub that prints the function name and its argument. Currently only single argument can be passed (no value pack support yet).
2015-09-09Add support for evaluation contextBoris Kolpackov4-130/+204
For now it acts as just the value mode that can be enabled anywhere variable expansion is supported, for example: (foo=bar): And the primary use currently is to enable/test quoted and indirect variable expansion: "foo bar" = FOO BAR print $"foo bar" # Invalid. print $("foo bar") # Yeah, baby. foo = FOO FOO = foo print $($foo) Not that you should do something like this...
2015-09-09Reimplement double quote lexing to avoid "implied quote" trickBoris Kolpackov2-104/+96
2015-09-08Initial take on double quote supportBoris Kolpackov2-19/+93
Currently, $(foo)-style variable expansion is not supported.
2015-09-08Use mode stack in lexerBoris Kolpackov3-24/+44
2015-09-08Implement single quote supportBoris Kolpackov4-5/+47
2015-09-08Move context-dependent functions from diagnostics to contextBoris Kolpackov6-184/+183
2015-09-08Clean up lexer mode logicBoris Kolpackov3-3/+4
2015-09-08Rework diagnostics verbosity, add quiet mode/optionBoris Kolpackov32-156/+234
2015-09-04Fix clang warningsBoris Kolpackov2-3/+4
2015-09-04Fix static initialization order issueBoris Kolpackov2-4/+14
2015-09-02Override duplicate generated C++ dependency prefixBoris Kolpackov1-3/+12
2015-09-02Remove stray spaceBoris Kolpackov1-1/+1
2015-09-01Minor changesBoris Kolpackov2-4/+1
2015-08-31Clean parser implementationBoris Kolpackov2-59/+13
2015-08-31Rework scoping logicBoris Kolpackov28-246/+475
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 Kolpackov11-27/+88
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 Kolpackov34-229/+1093
2015-08-24Ignore unknown prerequisite types in C++ link ruleBoris Kolpackov2-13/+0
2015-08-24Cosmetic changeBoris Kolpackov1-1/+1
2015-08-24Only treat name as directory if it is reversibleBoris Kolpackov2-29/+35
2015-08-24Add support for reversing project qualification to string valueBoris Kolpackov1-1/+26
2015-08-24New variable architectureBoris Kolpackov37-955/+1988
2015-08-17Tighten variable_map interfaceBoris Kolpackov4-35/+54
2015-08-14Don't short-cut to group_state if recipe is group_recipeBoris Kolpackov2-15/+8
This way we mess up the dependents count.
2015-08-14Rework meta/operation registrationBoris Kolpackov16-115/+186
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 Kolpackov3-24/+50
2015-08-13Rework postponed logicBoris Kolpackov12-75/+88
Specifically, now postponed is only used by the execution mode logic and rules should not return it directly.
2015-08-03Fix few bugsBoris Kolpackov3-4/+10
2015-08-03match_only rework, part 2Boris Kolpackov8-96/+123
2015-08-03match_only and dependents count rework, part 1Boris Kolpackov6-29/+73
2015-07-31Cosmetic changeBoris Kolpackov1-1/+1
2015-07-31Essential install module functionalityBoris Kolpackov27-198/+1017
2015-07-29Initial support for target type/pattern-specific variablesBoris Kolpackov7-26/+145
2015-07-28Install module genesisBoris Kolpackov8-7/+195
2015-07-24Fix bugs in dependency extraction codeBoris Kolpackov1-3/+15
2015-07-24Add support for generated test input/outputBoris Kolpackov15-124/+273
2015-07-24Further test module developmentBoris Kolpackov7-55/+305
2015-07-23Basic test supportBoris Kolpackov12-41/+172
2015-07-22Fix postponed re-examination logicBoris Kolpackov6-25/+29
Now postponed takes precedence over changed.
2015-07-21Test module genesisBoris Kolpackov13-19/+284
2015-07-21Be quiet when running pre/post operationsBoris Kolpackov1-2/+8
2015-07-21Improve nested operations supportBoris Kolpackov7-87/+124
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-21Add alias{} target type, use as base for dir{}Boris Kolpackov5-16/+40
2015-07-20Implement pre/post operation supportBoris Kolpackov7-88/+283
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-20Remove tracesBoris Kolpackov1-4/+0
2015-07-20Implement support for importing installed librariesBoris Kolpackov13-617/+1093
2015-07-15Implement project-qualified names/prerequisites, two-stage importBoris Kolpackov22-107/+304
2015-07-14Fix postfix operator++/-- implementationsBoris Kolpackov1-3/+3
2015-07-14Add notion of strong/weak amalgamation, make strong new clean boundaryBoris Kolpackov9-44/+88