Re: PATCH: .SECONDARY target with no dependencies does not work correctly.

2000-06-16 Thread Seth M LaForge
"Paul D. Smith" <[EMAIL PROTECTED]>: > This is obliquely stated in the documentation: > > `.SECONDARY' > The targets which `.SECONDARY' depends on are treated as > intermediate files, except that they are never automatically > deleted. *Note Chains of Implicit Rules: Chained Rule

Re: PATCH: .SECONDARY target with no dependencies does not work correctly.

2000-06-16 Thread Paul D. Smith
%% Seth M LaForge <[EMAIL PROTECTED]> writes: sml> (Make version 3.79.) Consider: sml> % cat Makefile sml> %.1: %.2 sml> cp $< $@ sml> %.2: %.3 sml> cp $< $@ sml> .SECONDARY: sml> % ls sml> Makefile foo.3 sml> % make foo.1 sml> cp foo.3