mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
85a2ebc1c4
Issue #1082
21 lines
470 B
Makefile
21 lines
470 B
Makefile
GMP_PORT_DIR := $(call select_from_ports,gmp)
|
|
|
|
REP_INC_DIR += include/gmp
|
|
|
|
INC_DIR += $(GMP_PORT_DIR)/include
|
|
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
REP_INC_DIR += include/gmp/32bit
|
|
INC_DIR += $(GMP_PORT_DIR)/include/arm
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
REP_INC_DIR += include/gmp/32bit
|
|
INC_DIR += $(GMP_PORT_DIR)/include/x86_32
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_64),)
|
|
REP_INC_DIR += include/gmp/64bit
|
|
INC_DIR += $(GMP_PORT_DIR)/include/x86_64
|
|
endif
|