You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
417 B
22 lines
417 B
6 months ago
|
|
||
|
# Copyright (C) Igor Sysoev
|
||
|
# Copyright (C) Nginx, Inc.
|
||
|
|
||
|
|
||
|
all:
|
||
|
cd $(OPENSSL)
|
||
|
|
||
|
perl Configure $(OPENSSL_TARGET) no-shared no-threads \
|
||
|
--prefix="%cd%/openssl" \
|
||
|
--openssldir="%cd%/openssl/ssl" \
|
||
|
$(OPENSSL_OPT)
|
||
|
|
||
|
if exist ms\do_ms.bat ( \
|
||
|
ms\do_ms \
|
||
|
&& $(MAKE) -f ms\nt.mak \
|
||
|
&& $(MAKE) -f ms\nt.mak install \
|
||
|
) else ( \
|
||
|
$(MAKE) \
|
||
|
&& $(MAKE) install_sw \
|
||
|
)
|