[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Win10/GNUmake4.1: paths in .INCLUDE_DIRS not searched
From: |
Eli Zaretskii |
Subject: |
Re: Win10/GNUmake4.1: paths in .INCLUDE_DIRS not searched |
Date: |
Fri, 06 May 2016 16:27:22 +0300 |
> From: "Jannick" <address@hidden>
> Date: Fri, 6 May 2016 14:25:27 +0200
>
> '.INCLUDE_DIRS += C:\mypath' does not make GNUmake to look for included
> makefiles (using 'include') in C:\mypath.
>
> I checked that
>
> * C:\mypath is added to .INCLUDE_DIRS (with 'make -p')
>
> * GNUmake does not look for the includes (with 'make -d')
AFAIK, .INCLUDE_DIRS is a read-only variable: modifying its value
doesn't affect Make. The value is created at startup, and no
assignment to it can change the results of that.
> As a current workaround I am using 'make -IC:\mypath' which does the
> job.
AFAIK, that's the only way of changing the default Make include path.
(This is not Windows specific in any way, AFAIK.)