mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
5e4e634625
If `select_from_ports` is evaluated lazily, we might miss a port during the dependency check. A way to prevent this is to use the `:=` operator. Fixes genodelabs/genode#4618
10 lines
219 B
Makefile
10 lines
219 B
Makefile
LIBSSL_PORT_DIR := $(call select_from_ports,openssl)
|
|
|
|
LIBS += libcrypto
|
|
SRC_CC += aes_cbc_4k.cc
|
|
|
|
INC_DIR += $(REP_DIR)/src/lib/aes_cbc_4k
|
|
INC_DIR += $(LIBSSL_PORT_DIR)/include
|
|
|
|
vpath % $(REP_DIR)/src/lib/aes_cbc_4k
|