Re: How can I get `make` to look at the mtime of a symlink?

2017-08-06 Thread Stefan Monnier
>   MAKEFLAGS += -L

Ha!


Stefan "Thanks!"


___
Help-make mailing list
Help-make@gnu.org
https://lists.gnu.org/mailman/listinfo/help-make


Re: How can I get `make` to look at the mtime of a symlink?

2017-08-06 Thread Paul Smith
On Sun, 2017-08-06 at 12:02 -0400, Stefan Monnier wrote:
> > > I need to update some files whenever a symlink changes, even if the new
> > > target of the symlink is an old file.
> > > How can I do that with GNU Make?
> > See:
> >    -L, --check-symlink-times
> > Use the latest mtime between symlinks and target.
> 
> Thanks.  Is there a way to do it from within the Makefile (either
> globally, or for specific targets)?

It should work to add:

  MAKEFLAGS += -L

into your makefile.

You can't do it just for certain targets though... well, I guess you
could replace those recipes with some kind of recursive make invocation
that added the -L option for just those targets.

___
Help-make mailing list
Help-make@gnu.org
https://lists.gnu.org/mailman/listinfo/help-make


Re: How can I get `make` to look at the mtime of a symlink?

2017-08-06 Thread Stefan Monnier
>> I need to update some files whenever a symlink changes, even if the new
>> target of the symlink is an old file.
>> How can I do that with GNU Make?

> See:

>    -L, --check-symlink-times
> Use the latest mtime between symlinks and target.

Thanks.  Is there a way to do it from within the Makefile (either
globally, or for specific targets)?


Stefan


___
Help-make mailing list
Help-make@gnu.org
https://lists.gnu.org/mailman/listinfo/help-make


Re: How can I get `make` to look at the mtime of a symlink?

2017-08-06 Thread Paul Smith
On Sat, 2017-08-05 at 21:43 -0400, Stefan Monnier wrote:
> I need to update some files whenever a symlink changes, even if the new
> target of the symlink is an old file.
> 
> How can I do that with GNU Make?

See:

   -L, --check-symlink-times
Use the latest mtime between symlinks and target.

From the manual:

On systems that support symbolic links, this option causes make to
consider the timestamps on any symbolic links in addition to the
timestamp on the file referenced by those links. When this option is
provided, the most recent timestamp among the file and the symbolic
links is taken as the modification time for this target file.

Supported in GNU make 3.81 and above.

Cheers!

___
Help-make mailing list
Help-make@gnu.org
https://lists.gnu.org/mailman/listinfo/help-make