diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 00:28:24 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 00:28:24 -0700 |
commit | 8c9e97ae0183e79accbcb1afc57499f83c0b5406 (patch) | |
tree | 2411df7fd69a386046f65266ecff9304075e51c1 /cpp/012transform | |
parent | 01152aa268e54aebade352965ce1200b49fc8f4f (diff) | |
download | mu-8c9e97ae0183e79accbcb1afc57499f83c0b5406.tar.gz |
1155 - three phases of mu: load, transform, run
Each phase implicitly calls previous phases. Most C++ scenarios implicitly call one, two or three of the phases. More clear now that 'load' does more than just add recipes.
Diffstat (limited to 'cpp/012transform')
-rw-r--r-- | cpp/012transform | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/012transform b/cpp/012transform index bb61c6e0..59b87e69 100644 --- a/cpp/012transform +++ b/cpp/012transform @@ -1,5 +1,4 @@ -//: Once a set of recipes is loaded, it can be filtered through an extensible -//: list of 'transforms'. +//: Phase 2: Filter loaded recipes through an extensible list of 'transforms'. //: //: The hope is that this framework of transform tools will provide a //: deconstructed alternative to conventional compilers. |