alternatives to using */*/*

2005-02-14 Thread Dan Jacobson
Not sure if the Make documentation gives alternatives to using e.g., latest.txt: * */* */*/* */*/*/* */*/*/*/* */*/*/*/*/* ...; commands Perhaps latest:; find . -newer latest.txt ___ Bug-make mailing list Bug-make@gnu.org http://lists.gnu.org

Re: alternatives to using */*/*

2005-02-14 Thread Paul D. Smith
%% Dan Jacobson [EMAIL PROTECTED] writes: dj Not sure if the Make documentation gives alternatives to using e.g., dj latest.txt: * */* */*/* */*/*/* */*/*/*/* */*/*/*/*/* ...; commands dj Perhaps dj latest:; find . -newer latest.txt FILES := $(shell find . -type f) latest: $(FILES