mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 21:57:55 +00:00
f23e302475
Note, OpenSSL now comes as one combined depot archive *openssl* that replaces the former *libssl* and *libcrypto* archives. The libraries are still separate binaries for compatibility with legacy software. Issue #3773
32 lines
560 B
Makefile
32 lines
560 B
Makefile
MIRROR_FROM_REP_DIR := \
|
|
lib/import/import-libcrypto.mk \
|
|
lib/import/import-libssl.mk \
|
|
lib/symbols/libcrypto \
|
|
lib/symbols/libssl
|
|
|
|
content: $(MIRROR_FROM_REP_DIR)
|
|
|
|
$(MIRROR_FROM_REP_DIR):
|
|
$(mirror_from_rep_dir)
|
|
|
|
PORT_DIR := $(call port_dir,$(REP_DIR)/ports/openssl)
|
|
|
|
content: include
|
|
|
|
include:
|
|
mkdir $@
|
|
cp -r $(PORT_DIR)/include/* $@/
|
|
|
|
content: src/lib/openssl
|
|
|
|
src/lib/openssl:
|
|
mkdir -p $@
|
|
cp -r $(REP_DIR)/src/lib/openssl/crypto $@/
|
|
cp -r $(REP_DIR)/src/lib/openssl/spec $@/
|
|
|
|
content: LICENSE
|
|
|
|
LICENSE:
|
|
cp $(PORT_DIR)/src/lib/openssl/LICENSE $@
|
|
|