mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
Make 'build_libs' build shared libraries as well
Reviewed-by: Matt Caswell <matt@openssl.org>
This commit is contained in:
parent
b385889640
commit
8478a70333
@ -240,7 +240,7 @@ all : build_generated, -
|
||||
depend
|
||||
|
||||
build_libs : build_generated, build_libs_nodep, depend
|
||||
build_libs_nodep : $(LIBS)
|
||||
build_libs_nodep : $(LIBS), $(SHLIBS)
|
||||
build_engines : build_generated, build_engines_nodep, depend
|
||||
build_engines_nodep : $(ENGINES)
|
||||
build_apps : build_generated, build_apps_nodep, depend
|
||||
|
@ -764,7 +764,7 @@ FORCE:
|
||||
|
||||
# Building targets ###################################################
|
||||
|
||||
libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS)
|
||||
libcrypto.pc libssl.pc openssl.pc: configdata.pm $(LIBS) {- join(" ",map { shlib_simple($_) } @{$unified_info{libraries}}) -}
|
||||
libcrypto.pc:
|
||||
@ ( echo 'prefix=$(INSTALLTOP)'; \
|
||||
echo 'exec_prefix=$${prefix}'; \
|
||||
|
@ -168,7 +168,7 @@ all: build_generated \
|
||||
build_libs_nodep build_engines_nodep build_apps_nodep depend
|
||||
|
||||
build_libs: build_generated build_libs_nodep depend
|
||||
build_libs_nodep: $(LIBS)
|
||||
build_libs_nodep: $(LIBS) {- join(" ",map { shlib_import($_) } @{$unified_info{libraries}}) -}
|
||||
build_engines: build_generated build_engines_nodep depend
|
||||
build_engines_nodep: $(ENGINES)
|
||||
build_apps: build_generated build_apps_nodep depend
|
||||
|
Loading…
Reference in New Issue
Block a user