Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2015-03-24 | Make meta-operations control build loop; add disfigure skeleton | Boris Kolpackov | 1 | -5/+5 | |
2015-03-13 | Add support for "first" and "last" execution modes | Boris Kolpackov | 1 | -5/+12 | |
2015-03-12 | Implement clean operation | Boris Kolpackov | 1 | -2/+15 | |
2015-03-10 | Further operation implementation | Boris Kolpackov | 1 | -0/+2 | |
2015-03-09 | Build according to buildspec | Boris Kolpackov | 1 | -31/+109 | |
At this stage operations are still ignored. | |||||
2015-03-04 | Move roots and bases to appropriate scopes | Boris Kolpackov | 1 | -1/+1 | |
2015-03-03 | Implement new default target logic, canonical directory name (empty value) | Boris Kolpackov | 1 | -1/+0 | |
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-03-02 | Cleanup to support clang compilation | Boris Kolpackov | 1 | -3/+5 | |
2015-02-27 | Variable assignment, appending support | Boris Kolpackov | 1 | -1/+1 | |
2015-02-24 | Use prefix_map for scopes, establish root scope | Boris Kolpackov | 1 | -1/+1 | |
2015-02-24 | Add fsdir{} for creating directories | Boris Kolpackov | 1 | -0/+9 | |
2015-02-23 | Don't create new target for alias/action/dir prerequisite | Boris Kolpackov | 1 | -1/+16 | |
2015-02-23 | Redo rule match/build logic | Boris Kolpackov | 1 | -40/+122 | |
Now the rule is fully responsible for searching, matching, and building of prerequisites. | |||||
2015-02-20 | Rename 'directory' to 'dir' in target, prerequisite | Boris Kolpackov | 1 | -2/+2 | |
2015-02-20 | Rework extension handling logic | Boris Kolpackov | 1 | -1/+1 | |
We no longer support hxx{vector.}. Rather, the target type can decide, e.g., based on a config variable, whether to append an extension. Also, in the future we may support a syntax to specify that this is a complete name, e.g., hxx{'vector'}. | |||||
2015-02-19 | Add support for sourcing/including buildfiles, print, dir{} alias | Boris Kolpackov | 1 | -2/+14 | |
2015-01-20 | Diagnostic infrastructure revamp | Boris Kolpackov | 1 | -3/+3 | |
2015-01-16 | Implement rule chaining for cxx::link | Boris Kolpackov | 1 | -2/+44 | |
2015-01-14 | Track file extension in target, prerequisite | Boris Kolpackov | 1 | -1/+6 | |
2015-01-08 | Implement tracing support | Boris Kolpackov | 1 | -2/+14 | |
Also use to-relative path translation in diagnostics. | |||||
2014-12-18 | Initial support for loading dependency info from buildfiles | Boris Kolpackov | 1 | -8/+17 | |
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 | |||||
2014-12-10 | Add rules | Boris Kolpackov | 1 | -0/+38 | |
g++-4.9 -std=c++11 -g -I.. -o bd bd.cxx target.cxx native.cxx rule.cxx cxx/rule.cxx cxx/target.cxx process.cxx timestamp.cxx path.cxx |