%% John Skiff <[EMAIL PROTECTED]> writes:

  js> The purpose of $CCOBJ was to make it possible to force a rebuild
  js> by removing a .obj file.  However if I remove one .obj file then
  js> ALL of the source recompiles.  I guess that there is no way around
  js> that.

No, there's no way around it, because you don't have any rule which
tells you how to build just one object.  All you have is a rule which
tells you how to build "all" the objects, then you just pick the ones
which are really out of date.

You'll have to get used to touching one of the .c files rather than
deleting the .obj file.

Offhand I can't think of any reasonable way around it.

-- 
-------------------------------------------------------------------------------
 Paul D. Smith <[EMAIL PROTECTED]>          Find some GNU make tips at:
 http://www.gnu.org                      http://www.paulandlesley.org/gmake/
 "Please remain calm...I may be mad, but I am a professional." --Mad Scientist

_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to