mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-22 06:57:51 +00:00
15 lines
284 B
Makefile
15 lines
284 B
Makefile
REP_INC_DIR += include/gmp
|
|
|
|
ifeq ($(filter-out $(SPECS),x86),)
|
|
ifeq ($(filter-out $(SPECS),32bit),)
|
|
REP_INC_DIR += include/gmp/x86_32
|
|
endif # 32bit
|
|
|
|
ifeq ($(filter-out $(SPECS),64bit),)
|
|
REP_INC_DIR += include/gmp/x86_64
|
|
endif # 64bit
|
|
|
|
else
|
|
REQUIRES += x86
|
|
endif # x86
|