Using Poly/ML to build projects with nested directory structures -
until now, have been using poly/ml several small projects source code files in same directory. build these projects, had run following command in repl: > polyml.make "main"; but have project scale makes impractical put source code files in same directory. build these projects in repl, need run following commands: > polyml.make "foo/foo"; > polyml.make "bar/bar"; > polyml.make "qux/qux"; > polyml.make "main"; which not terribly practical number of subsystems grows. is there way automate process of building projects nested directory structures in poly/ml? p.d.: have had @ both sml/nj's compilation manager , mlton's ml basis system. while unquestionably powerful, these complicated needs. put file called ml_bind.ml in each of sub-directories , have files build component directory. polyml.make expects name of source file match name of component (structure, signature or functor). if looking