Martin Schr�der wrote: > > On 2003-11-20 12:12:16 -0500, Noel Yap wrote: > > file1: source.dtx source.ins > > > > file2 file3: file1 > > This can be simplified as > > target2 target3 : target1 > target1: source1 ; touch target1 target2 target3 > > Unfortunately this looses the dependency for target2: If it's > absent it's not remade automatically. :-(
Not if you do something like: default: install install: targets targets: target1 target2 target3 target2 target3: target1 target1: source1 ; touch target1 target2 target3 Are there other concerns that haven't been addressed here? HTH, Noel -- NOTICE: If received in error, please destroy and notify sender. Sender does not waive confidentiality or privilege, and use is prohibited. _______________________________________________ Help-make mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/help-make
