On Wed, 2007-08-01 at 14:30 -0500, EXT-Pennington, Dale K wrote:

> > > phony-clean-%:
> > >     gmake -f $* clean
> > > 
> > > phony-all-%:
> > >     gmake -f $* all
> > > 
> > > .PHONY: $(CLEANTARGERS) $(ALLTARGETS)
> > > 
>  
> When we declared the CLEANTARGETS and ALLTARGETS as phoney, they no
> longer check them against the implicit rules (per online manual section
> 4.6). Once I comment out the .PHONY line all works well.

Another alternative is to use the old-style FORCE rules, like:

  phony-clean-%: .FORCE
        ....
  .FORCE:

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


_______________________________________________
Help-make mailing list
Help-make@gnu.org
http://lists.gnu.org/mailman/listinfo/help-make

Reply via email to