2014-05-07 21:52:52 +00:00
|
|
|
GMP_PORT_DIR := $(call select_from_ports,gmp)
|
|
|
|
|
2011-12-22 15:19:25 +00:00
|
|
|
REP_INC_DIR += include/gmp
|
|
|
|
|
2014-05-07 21:52:52 +00:00
|
|
|
INC_DIR += $(GMP_PORT_DIR)/include
|
|
|
|
|
2012-07-03 10:24:46 +00:00
|
|
|
ifeq ($(filter-out $(SPECS),arm),)
|
|
|
|
REP_INC_DIR += include/gmp/32bit
|
2014-05-07 21:52:52 +00:00
|
|
|
INC_DIR += $(GMP_PORT_DIR)/include/arm
|
2012-07-03 10:24:46 +00:00
|
|
|
endif
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2012-07-03 10:24:46 +00:00
|
|
|
ifeq ($(filter-out $(SPECS),x86_32),)
|
|
|
|
REP_INC_DIR += include/gmp/32bit
|
2014-05-07 21:52:52 +00:00
|
|
|
INC_DIR += $(GMP_PORT_DIR)/include/x86_32
|
2012-07-03 10:24:46 +00:00
|
|
|
endif
|
2011-12-22 15:19:25 +00:00
|
|
|
|
2012-07-03 10:24:46 +00:00
|
|
|
ifeq ($(filter-out $(SPECS),x86_64),)
|
|
|
|
REP_INC_DIR += include/gmp/64bit
|
2014-05-07 21:52:52 +00:00
|
|
|
INC_DIR += $(GMP_PORT_DIR)/include/x86_64
|
2012-07-03 10:24:46 +00:00
|
|
|
endif
|