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_curllib | |
parent | fdc091a8573d0c3aa260738384e5d9dbb31a38df (diff) |
David McCreedy's "TPF-platform specific changes to various files" patch
Diffstat (limited to 'packages/TPF/maketpf.env_curllib')
-rw-r--r-- | packages/TPF/maketpf.env_curllib | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/packages/TPF/maketpf.env_curllib b/packages/TPF/maketpf.env_curllib new file mode 100644 index 000000000..8a9ad9f0a --- /dev/null +++ b/packages/TPF/maketpf.env_curllib @@ -0,0 +1,55 @@ +################################################################################ +################################################################################ +#env TPF CURL Library Source and Output +################################################################################ +################################################################################ + +################################################################################ +# Define the directories where the shared objects reside +################################################################################ +ROOTLIBDIRS := $(foreach d,$(TPF_ROOT),$d/opensource/curl/output/lib) + +################################################################################ +# Define the directories where the loadables (XXXXVV) are to be written +################################################################################ + +ROOTLOADDIRS := $(foreach d,$(TPF_ROOT),$d/opensource/curl/output/load) + +################################################################################ +# Define the location of the export files used by the LD postprocessor +# - currently expected that .exp files will also live in lib dir +################################################################################ +ROOTEXPDIRS := $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/output/exp) + +################################################################################ +# Define the object file directory name +################################################################################ + +ROOTOBJDIRS := $(foreach d,$(TPF_ROOT),$d/opensource/curl/output/obj) + +################################################################################ +# Define the listing files directory name +################################################################################ + +ROOTLSTDIRS := $(foreach d,$(TPF_ROOT),$d/opensource/curl/output/lst) + +################################################################################ +# Set the include/header file directories +################################################################################ + +ROOTINCDIRS := $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/lib) +ROOTINCDIRS += $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/include) +ROOTINCDIRS += $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/include/curl) + +################################################################################ +# Set the C file directories +################################################################################ + +ROOTCDIRS := $(foreach d,$(TPF_ROOT_LM),$d/opensource/curl/lib) + +################################################################################ +# Define "TPF" to enable TPF-specific code in Curl files. +################################################################################ + +CFLAGS_$(APP) += -D TPF + |