zte's code,first commit

Change-Id: I9a04da59e459a9bc0d67f101f700d9d7dc8d681b
diff --git a/ap/lib/libzcore/Makefile b/ap/lib/libzcore/Makefile
new file mode 100755
index 0000000..e6e547c
--- /dev/null
+++ b/ap/lib/libzcore/Makefile
@@ -0,0 +1,51 @@
+# /*****************************************************************************
+#* °æÈ¨ËùÓÐ (C)2015, ÖÐÐËͨѶ¹É·ÝÓÐÏÞ¹«Ë¾¡£
+#* 
+#* ÎļþÃû³Æ:     Makefile
+#* Îļþ±êʶ:     Makefile
+#* ÄÚÈÝÕªÒª:     Top makefile of zcore librarys
+#* ʹÓ÷½·¨:     void
+#* 
+#* ÐÞ¸ÄÈÕÆÚ        °æ±¾ºÅ      Ð޸ıê¼Ç        ÐÞ¸ÄÈË          ÐÞ¸ÄÄÚÈÝ
+#* -----------------------------------------------------------------------------
+#* 2015/02/10      V1.0        Create          ÁõÑÇÄÏ          ´´½¨
+#* 
+# ******************************************************************************/
+
+#*******************************************************************************
+# include ZTE library makefile
+#*******************************************************************************
+#include $(zte_lib_mak)
+include $(COMMON_MK)
+#*******************************************************************************
+# Default target
+#*******************************************************************************
+zcore_lib := std min
+
+.PHONY: $(zcore_lib)
+
+#*******************************************************************************
+# Default target of uClinux makefile framework
+#*******************************************************************************
+all: ${zcore_lib}
+	@touch .zcorebuilt_user
+
+romfs:
+	for lib in ${zcore_lib} ; do                                    \
+		[ ! -d $$lib ] || $(MAKE) -C $$lib romfs || exit $$? ;      \
+	done
+
+clean:
+	if [ -f .zcorebuilt_user ]; then                                \
+		for lib in ${zcore_lib} ; do                                \
+			${MAKE} -j1 -C $$lib clean ;                            \
+		done;                                                       \
+		rm -f .zcorebuilt_user;                                     \
+	fi;
+
+#*******************************************************************************
+# zcore library target
+#*******************************************************************************
+${zcore_lib}:
+	[ ! -d $@ ] || ${MAKE} -C $(zte_lib_path)/libzcore/$@
+