mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
fd14cf9f1e
Issue #4508.
12 lines
347 B
Makefile
12 lines
347 B
Makefile
NL_CONTRIB_INC_DIR := $(call select_from_ports,libnl)/src/lib/libnl
|
|
INC_DIR += $(NL_CONTRIB_INC_DIR)/include
|
|
|
|
LIBNL_INC_DIR = $(REP_DIR)/src/lib/libnl/include
|
|
INC_DIR += $(LIBNL_INC_DIR)
|
|
ifneq ($(filter 32bit,$(SPECS)),)
|
|
INC_DIR += $(LIBNL_INC_DIR)/spec/32bit
|
|
endif
|
|
ifneq ($(filter 64bit,$(SPECS)),)
|
|
INC_DIR += $(LIBNL_INC_DIR)/spec/64bit
|
|
endif
|