You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
|
|
|