OSDN Git Service

original
[gb-231r1-is01/Gingerbread_2.3.3_r1_IS01.git] / build / core / copy_headers.mk
1 ###########################################################
2 ## Copy headers to the install tree
3 ###########################################################
4 ifneq ($(strip $(LOCAL_IS_HOST_MODULE)),)
5   my_prefix := HOST_
6 else
7   my_prefix := TARGET_
8 endif
9
10 # Create a rule to copy each header, and make the
11 # all_copied_headers phony target depend on each
12 # destination header.  copy-one-header defines the
13 # actual rule.
14 #
15 $(foreach header,$(LOCAL_COPY_HEADERS), \
16   $(eval _chFrom := $(LOCAL_PATH)/$(header)) \
17   $(eval _chTo := \
18       $($(my_prefix)OUT_HEADERS)/$(LOCAL_COPY_HEADERS_TO)/$(notdir $(header))) \
19   $(eval $(call copy-one-header,$(_chFrom),$(_chTo))) \
20   $(eval all_copied_headers: $(_chTo)) \
21  )
22 _chFrom :=
23 _chTo :=