mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 22:23:16 +00:00
85a2ebc1c4
Issue #1082
15 lines
363 B
Makefile
15 lines
363 B
Makefile
PYTHON = python-2.6.4
|
|
REP_INC_DIR += include/python
|
|
INC_DIR += $(call select_from_ports,python)/include
|
|
|
|
ifeq ($(filter-out $(SPECS),x86),)
|
|
ifeq ($(filter-out $(SPECS),32bit),)
|
|
REP_INC_DIR += include/python/x86_32
|
|
endif # 32bit
|
|
|
|
ifeq ($(filter-out $(SPECS),64bit),)
|
|
REP_INC_DIR += include/python/x86_64
|
|
endif # 64bit
|
|
endif # x86
|
|
|