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)