1.DEBUG
android makefile编写一直是我这边的痛,目前找到一个好的办法对makefile进行debug的工作
$(warning value of LOCAL_OPPO_SRC_FILES is: $(LOCAL_OPPO_SRC_FILES))
如上就可以实现打印当前变量。
原文具体帖子见
http://stackoverflow.com/questions/3826604/android-mk-debug-output
2.各种文件的拷贝方式:
可详见 http://stackoverflow.com/questions/14380357/copy-multiple-txt-files-in-system-using-android-mk
1.修改PRODUCT_COPY_FILES
src_files := $(shell ls $(WRP_SRC_PATH)/)
PRODUCT_COPY_FILES += $(foreach file, $(src_files), \
#$(WRP_SRC_PATH)/$(file):$(WRP_DST_PATH)/$(file))
2.利用shell命令
LOCAL_POST_PROCESS_COMMAND := $(shell cp -r $(LOCAL_PATH)/*.apk $(TARGET_OUT)/app/)
3.在Android.mk中添加宏
LOCAL_CFLAGS += -DHHHH 相当于在代码中定义了宏 #define HHHH
android.mk深入浅出系列
http://nfer-zhuang.iteye.com/category/261280