summaryrefslogtreecommitdiffstats
path: root/core/copy_headers.mk
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:14 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:14 -0800
commit05806d7af62e07c6225b2e7103a1b115ecf6c9ad (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /core/copy_headers.mk
parent094268cf8cb37b9d904c8a1e3559cdd46d73cf66 (diff)
downloadreplicant_build-05806d7af62e07c6225b2e7103a1b115ecf6c9ad.zip
replicant_build-05806d7af62e07c6225b2e7103a1b115ecf6c9ad.tar.gz
replicant_build-05806d7af62e07c6225b2e7103a1b115ecf6c9ad.tar.bz2
auto import from //depot/cupcake/@135843
Diffstat (limited to 'core/copy_headers.mk')
-rw-r--r--core/copy_headers.mk23
1 files changed, 0 insertions, 23 deletions
diff --git a/core/copy_headers.mk b/core/copy_headers.mk
deleted file mode 100644
index dac07d5..0000000
--- a/core/copy_headers.mk
+++ /dev/null
@@ -1,23 +0,0 @@
-###########################################################
-## Copy headers to the install tree
-###########################################################
-ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
- my_prefix := HOST_
-else
- my_prefix := TARGET_
-endif
-
-# Create a rule to copy each header, and make the
-# all_copied_headers phony target depend on each
-# destination header. copy-one-header defines the
-# actual rule.
-#
-$(foreach header,$(LOCAL_COPY_HEADERS), \
- $(eval _chFrom := $(LOCAL_PATH)/$(header)) \
- $(eval _chTo := \
- $($(my_prefix)OUT_HEADERS)/$(LOCAL_COPY_HEADERS_TO)/$(notdir $(header))) \
- $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \
- $(eval all_copied_headers: $(_chTo)) \
- )
-_chFrom :=
-_chTo :=