aboutsummaryrefslogtreecommitdiff
path: root/build/target.cxx
AgeCommit message (Collapse)AuthorFilesLines
2015-02-23Don't create new target for alias/action/dir prerequisiteBoris Kolpackov1-1/+16
2015-02-23Redo rule match/build logicBoris Kolpackov1-40/+122
Now the rule is fully responsible for searching, matching, and building of prerequisites.
2015-02-20Rename 'directory' to 'dir' in target, prerequisiteBoris Kolpackov1-2/+2
2015-02-20Rework extension handling logicBoris Kolpackov1-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-19Add support for sourcing/including buildfiles, print, dir{} aliasBoris Kolpackov1-2/+14
2015-01-20Diagnostic infrastructure revampBoris Kolpackov1-3/+3
2015-01-16Implement rule chaining for cxx::linkBoris Kolpackov1-2/+44
2015-01-14Track file extension in target, prerequisiteBoris Kolpackov1-1/+6
2015-01-08Implement tracing supportBoris Kolpackov1-2/+14
Also use to-relative path translation in diagnostics.
2014-12-18Initial support for loading dependency info from buildfilesBoris Kolpackov1-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-10Add rulesBoris Kolpackov1-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