Changes by: Aleksey Nogin (nogin at metaprl.org)
Date: 2007-01-10 11:43:38 -0800 (Wed, 10 Jan 2007)
Revision: 9929
Log message:

      - (Bug 626) Allow mixing "special" keywords with the variable names in export
        arguments. To better distinguish the two, the keywords now start with a ".".
        Namely, we no have "export .PHONY" that exports the set of phony targets and
        "export .RULE" that exports all the implicit rules and implicit
        dependencies.
      
        P.S. The "export rules" is still supported for backward-compatibility, but
        will generate a warning instructing people to use "export .RULE .PHONY"
        instead.
      
      - (Bug 625) Documented the "export" built-in function.
      

Changes  Path
+23 -13 omake-branches/0.9.8.x/src/builtin/omake_builtin_base.ml
+89 -83 omake-branches/0.9.8.x/src/env/omake_env.ml
+8 -4 omake-branches/0.9.8.x/src/env/omake_env.mli
+33 -20 omake-branches/0.9.8.x/src/eval/omake_eval.ml
+7 -3 omake-branches/0.9.8.x/src/eval/omake_eval.mli