mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 09:05:04 -05:00
b801b453af
- replace tabs with spaces where possible - remove line ending spaces - remove double/triple newlines at EOF - fix a non-UTF-8 character - cleanup a few indentations/line continuations in manual examples Closes https://github.com/curl/curl/pull/3037
25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
################################################################################
|
|
################################################################################
|
|
#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
|