Hi, I need to copy one shell script file and data file in to LOCAL_MODULE_PATH. The executable file is able to generated at specified folder. I need to copy script files and data files (present in same folder where *.C files) after successful compile of *.C files.
My make file for executable is given below. Please help how to copy abc.sh and data.txt in to LOCAL_MODULE path. include $(CLEAR_VARS) LOCAL_SRC_FILES:= thserv.c readln.c writened.c LOCAL_CFLAGS += -D_LINUX LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../../include LOCAL_C_INCLUDES += $(LOCAL_PATH)/../include LOCAL_STATIC_LIBRARIES := libcutils libc LOCAL_SHARED_LIBRARIES := libutils LOCAL_MODULE := server LOCAL_MODULE_PATH := $(TARGET_OUT_EXECUTABLES) LOCAL_UNSTRIPPED_PATH := $(TARGET_OUT_EXECUTABLES_UNSTRIPPED) LOCAL_LDLIBS := -lpthread -lrt Thanks -- unsubscribe: [email protected] website: http://groups.google.com/group/android-porting
