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.
14 lines
349 B
Makefile
14 lines
349 B
Makefile
INC_DIR += $(call select_from_ports,curl)/include
|
|
|
|
ifeq ($(filter-out $(SPECS),32bit),)
|
|
TARGET_CPUARCH=32bit
|
|
else ifeq ($(filter-out $(SPECS),64bit),)
|
|
TARGET_CPUARCH=64bit
|
|
endif
|
|
|
|
# include architecture specific curlbuild.h
|
|
REP_INC_DIR += src/lib/curl/$(TARGET_CPUARCH)
|
|
REP_INC_DIR += src/lib/curl/$(TARGET_CPUARCH)/curl
|
|
|
|
REP_INC_DIR += src/lib/curl
|