blob: 3ebf1d18940bf7e06d1569fe8c09cf2e66b0904f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
################################################################################
################################################################################
#env TPF CURL Includes
################################################################################
################################################################################
################################################################################
# Define the directories where the shared objects reside
################################################################################
ROOTLIBDIRS := $(foreach d,$(TPF_ROOT),$d/opensource/curl/output/lib)
################################################################################
# Set the include/header file directories
################################################################################
ROOTINCDIRS := $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/include)
ROOTINCDIRS += $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/include/curl)
################################################################################
# Define "TPF" to enable TPF-specific code in Curl files.
################################################################################
CFLAGS_$(APP) += -D TPF
|