comparison auto/lib/openssl/make @ 2832:d27ac70df098

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.
author Igor Sysoev <igor@sysoev.ru>
date Mon, 11 May 2009 18:02:06 +0000
parents 41f993457021
children ecdc41bf2047
comparison
equal deleted inserted replaced
2831:a294cff147ec 2832:d27ac70df098
20 $OPENSSL/out32/ssleay32.lib: 20 $OPENSSL/out32/ssleay32.lib:
21 cd $OPENSSL 21 cd $OPENSSL
22 perl Configure VC-WIN32 no-shared 22 perl Configure VC-WIN32 no-shared
23 ms\\do_ms 23 ms\\do_ms
24 \$(MAKE) -f ms\\nt.mak 24 \$(MAKE) -f ms\\nt.mak
25 cd ..\\..\\.. 25 cd \$(CURDIR)
26 26
27 END 27 END
28 28
29 ;; 29 ;;
30 30
37 `echo "$OPENSSL\\out32\\ssleay32.lib:" | sed -e "s/\//$ngx_regex_dirsep/g"` 37 `echo "$OPENSSL\\out32\\ssleay32.lib:" | sed -e "s/\//$ngx_regex_dirsep/g"`
38 cd `echo "$OPENSSL" | sed -e "s/\//$ngx_regex_dirsep/g"` 38 cd `echo "$OPENSSL" | sed -e "s/\//$ngx_regex_dirsep/g"`
39 perl Configure BC-32 no-shared 39 perl Configure BC-32 no-shared
40 ms\\do_nasm 40 ms\\do_nasm
41 \$(MAKE) -f ms\\bcb.mak 41 \$(MAKE) -f ms\\bcb.mak
42 cd ..\\..\\.. 42 cd \$(CURDIR)
43 43
44 END 44 END
45 45
46 ;; 46 ;;
47 47