libssl: use platform specific mk files
Instead of checking the target platform in the mk file use the common pattern of providing a mk file for each platform. Fixes #1236.devel
parent
225dcf897b
commit
5322714183
@ -0,0 +1,4 @@
|
||||
include $(REP_DIR)/lib/mk/libssl.inc
|
||||
|
||||
INC_DIR += $(REP_DIR)/src/lib/openssl/arm
|
||||
INC_DIR += $(LIBSSL_PORT_DIR)/src/lib/openssl/arm
|
@ -0,0 +1,4 @@
|
||||
include $(REP_DIR)/lib/mk/libssl.inc
|
||||
|
||||
INC_DIR += $(REP_DIR)/src/lib/openssl/x86_32
|
||||
INC_DIR += $(LIBSSL_PORT_DIR)/src/lib/openssl/x86_32
|
@ -0,0 +1,4 @@
|
||||
include $(REP_DIR)/lib/mk/libssl.inc
|
||||
|
||||
INC_DIR += $(REP_DIR)/src/lib/openssl/x86_64
|
||||
INC_DIR += $(LIBSSL_PORT_DIR)/src/lib/openssl/x86_64
|
Loading…
Reference in New Issue