Changes by: Jason Hickey (jyh at cs.caltech.edu)
Date: 2005-05-05 17:58:59 -0700 (Thu, 05 May 2005)
Revision: 963
Log message:

      Added $(dependencies-all ...) for recursive dependencies,
      and $(dependencies-proper ...) for dependencies that are not leaves.
      
      Note that the following is probably not what you want, because it
      requires that the project be built before it can be cleaned.
      
         clean: omake.opt
            rm $(dependencies-proper omake.opt)
      
      We could get this right with a rule something like the following.
      
         clean: :scanner: omake.opt
            rm $(dependencies-proper omake.opt)
      

Changes  Path
+2 -0 omake/OMakefile.in
+3 -0 omake/src/build/omake_builtin_file.ml
+103 -24 omake/src/build/omake_builtin_object.ml
+23 -0 omake/src/build/omake_builtin_util.ml
+5 -0 omake/src/build/omake_builtin_util.mli