mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 06:07:59 +00:00
63b6e04dae
Ref #3028
21 lines
500 B
Makefile
21 lines
500 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/spec/32bit/gmp
|
|
INC_DIR += $(GMP_PORT_DIR)/include/spec/arm
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
REP_INC_DIR += include/spec/32bit/gmp
|
|
INC_DIR += $(GMP_PORT_DIR)/include/spec/x86_32
|
|
endif
|
|
|
|
ifeq ($(filter-out $(SPECS),x86_64),)
|
|
REP_INC_DIR += include/spec/64bit/gmp
|
|
INC_DIR += $(GMP_PORT_DIR)/include/spec/x86_64
|
|
endif
|