use $(CURDIR) instead of "..\..\.." because the later does not allow to use

options as --with-zlib=../zlib-1.2.3.  It seems there is no common way
to learn the current directory in Win32 make's: although nmake has MAKEDIR
variable, nevertheless Borland make's MAKEDIR is the directory where make
is installed, and OpenWatcom wmake has no MAKEDIR at all.
This commit is contained in:
Igor Sysoev
2009-05-11 18:02:06 +00:00
parent ec9f47175e
commit 3d746ac4f0
6 changed files with 8 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ $OPENSSL/out32/ssleay32.lib:
perl Configure VC-WIN32 no-shared
ms\\do_ms
\$(MAKE) -f ms\\nt.mak
cd ..\\..\\..
cd \$(CURDIR)
END
@@ -39,7 +39,7 @@ END
perl Configure BC-32 no-shared
ms\\do_nasm
\$(MAKE) -f ms\\bcb.mak
cd ..\\..\\..
cd \$(CURDIR)
END