diff options
author | Yang Tse <yangsita@gmail.com> | 2009-05-01 12:39:40 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-05-01 12:39:40 +0000 |
commit | 5a91746b80fd41b9915574d8514f1d40e9cfd1b6 (patch) | |
tree | 8142242b120e88a93f697f0cc8cd31b466730427 /packages/TPF/maketpf.env_curl | |
parent | fdc091a8573d0c3aa260738384e5d9dbb31a38df (diff) |
David McCreedy's "TPF-platform specific changes to various files" patch
Diffstat (limited to 'packages/TPF/maketpf.env_curl')
-rw-r--r-- | packages/TPF/maketpf.env_curl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/packages/TPF/maketpf.env_curl b/packages/TPF/maketpf.env_curl new file mode 100644 index 000000000..fd9a90f28 --- /dev/null +++ b/packages/TPF/maketpf.env_curl @@ -0,0 +1,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 + |