import-openssl.mk: provide file named after api

For now this import file is solely there to satisfy the mechansim
in Goa that collects and incorporates import files for used APIs.

Issue genodelabs/goa#81.
This commit is contained in:
Josef Söntgen 2024-03-08 15:42:18 +01:00 committed by Christian Helmuth
parent 33d4134f49
commit dea6609612
4 changed files with 7 additions and 4 deletions

View File

@ -1,9 +1,9 @@
LIB_OPENSSL_DIR = $(call select_from_repositories,src/lib/openssl)
ARCH = $(filter 32bit 64bit,$(SPECS))
OPENSSL_DIR := $(call select_from_ports,openssl)
ARCH = $(filter 32bit 64bit,$(SPECS))
INC_DIR += $(OPENSSL_DIR)/include
INC_DIR += $(LIB_OPENSSL_DIR)/spec/$(ARCH)

View File

@ -2,9 +2,9 @@ LIB_OPENSSL_DIR = $(call select_from_repositories,src/lib/openssl)
OPENSSL_DIR := $(call select_from_ports,openssl)
LIBS += libcrypto
ARCH = $(filter 32bit 64bit,$(SPECS))
INC_DIR += $(OPENSSL_DIR)/include
INC_DIR += $(LIB_OPENSSL_DIR)/spec/$(ARCH)
LIBS += libcrypto

View File

@ -0,0 +1,2 @@
include $(call select_from_repositories,lib/import/import-libcrypto.mk)
include $(call select_from_repositories,lib/import/import-libssl.mk)

View File

@ -1,6 +1,7 @@
MIRROR_FROM_REP_DIR := \
lib/import/import-libcrypto.mk \
lib/import/import-libssl.mk \
lib/import/import-openssl.mk \
lib/symbols/libcrypto \
lib/symbols/libssl