aboutsummaryrefslogtreecommitdiff
path: root/build/prerequisite
AgeCommit message (Collapse)AuthorFilesLines
2015-12-01Reimplement define as dynamic derivation rather than aliasBoris Kolpackov1-1/+0
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-07-15Implement project-qualified names/prerequisites, two-stage importBoris Kolpackov1-14/+26
2015-06-30Group "see through" iteration, take 1Boris Kolpackov1-1/+7
2015-06-22Remove prerequisite rewriting for c/cxx chainingBoris Kolpackov1-4/+9
2015-06-18Move path and filesystem from build2 to libbutlBoris Kolpackov1-1/+1
2015-05-22Get rid of gcc, clang warnings (-Wall)Boris Kolpackov1-3/+4
2015-05-11Correct copyrightBoris Kolpackov1-1/+1
2015-04-26Rework resolved prerequisite targets storageBoris Kolpackov1-1/+1
2015-04-24Implement lib/liba/libso{} target group, shared/static library buildBoris Kolpackov1-1/+1
2015-04-17Add support for target groups, use to handle obj/obja/objso object targetsBoris Kolpackov1-7/+48
2015-04-13Add separate type to represent directory pathsBoris Kolpackov1-3/+3
2015-02-20Rename 'directory' to 'dir' in target, prerequisiteBoris Kolpackov1-2/+2
2015-01-20Diagnostic infrastructure revampBoris Kolpackov1-1/+1
2015-01-16Implement rule chaining for cxx::linkBoris Kolpackov1-1/+11
2015-01-14Track file extension in target, prerequisiteBoris Kolpackov1-4/+7
2014-12-18Initial support for loading dependency info from buildfilesBoris Kolpackov1-0/+53
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