mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-21 14:37:50 +00:00
f772dfaccd
Fixes #2021
14 lines
359 B
Makefile
14 lines
359 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/spec/$(TARGET_CPUARCH)
|
|
REP_INC_DIR += src/lib/curl/spec/$(TARGET_CPUARCH)/curl
|
|
|
|
REP_INC_DIR += src/lib/curl
|