Jamie Allsop wrote:
Hi,
(Windows 2k/XP(tested on both), Cygwin, make 3.80 and make 3.81 beta)
I have a make file that works fine 3.80 but not in 3.81. I have already
posted one issue in a previous post. This is another issue relating to
the same file.
The post entitled "Windows path names and multi
[snip]
$(PROJECT) : $(OBJFILES)
$(LINKER_DIRECTIVE)
Should read:
$(PROJECT) : $(OBJFILES)
$(LINKER_DIRECTIVE)
$(OBJFILES) : %.obj : %.cpp
$(COMPILER_DIRECTIVE)
$(OBJFILES) : %.obj : %.cpp
$(COMPILER_DIRECTIVE)
[snip]
Jamie
___
Bug-make ma
Hi,
(Windows 2k/XP(tested on both), Cygwin, make 3.80 and make 3.81 beta)
In make 3.80 I can read in an environment variable (ENVVAR1) of the form:
D:\rootdir\leafdir
I can use the line
MAKE_COMPATIBLE_ENVVAR1 = $(subst \,/,$(ENVVAR1))
I have sources located off this location on my hard drive so I
Hi,
(Windows 2k/XP(tested on both), Cygwin, make 3.80 and make 3.81 beta)
I have a make file that works fine 3.80 but not in 3.81. I have already
posted one issue in a previous post. This is another issue relating to
the same file.
I have a make file with the following elements, first I read in a
W