view auto/lib/openssl/makefile.msvc @ 9023:3c33d39a51d3 quic

README: updated building from sources, added directives reference.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 08 Feb 2023 12:47:35 +0400
parents a423e314c22f
children 3c4d81ea1338
line wrap: on
line source


# Copyright (C) Igor Sysoev
# Copyright (C) Nginx, Inc.


all:
	cd $(OPENSSL)

	perl Configure VC-WIN32 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					\
	)