comparison nt/gmake.defs @ 49258:eea4a0604c4a

(CURDIR): Convert to native Windows format (with forward slashes), to support building with Cygwin builds of make.
author Andrew Innes <andrewi@gnu.org>
date Wed, 15 Jan 2003 12:04:38 +0000
parents 4d7b83cc03aa
children 7dcad50a6b3e
comparison
equal deleted inserted replaced
49257:a456fbd1c87d 49258:eea4a0604c4a
76 SHELLTYPE=SH 76 SHELLTYPE=SH
77 endif 77 endif
78 78
79 MAKETYPE=gmake 79 MAKETYPE=gmake
80 80
81 # Convert CURDIR to native file name, if in Cygwin format
82 ifeq "$(shell cygpath $(CURDIR))" "$(CURDIR)"
83 CURDIR := $(shell cygpath -m $(CURDIR))
84 endif
81 THISDIR = . 85 THISDIR = .
82 86
83 # Cygwin has changed quoting rules somewhat since b20, in a way that 87 # Cygwin has changed quoting rules somewhat since b20, in a way that
84 # affects makefiles using sh as the command processor, so we need to 88 # affects makefiles using sh as the command processor, so we need to
85 # detect which rules to use. 89 # detect which rules to use.