add prj_mifi_min_aic8800dw

Change-Id: I8dfb5282d9f51358e08bb1e4f90ca912c9d15295
diff --git a/file_touch.sh b/file_touch.sh
new file mode 100755
index 0000000..480d0d9
--- /dev/null
+++ b/file_touch.sh
@@ -0,0 +1,9 @@
+if [ $# -ne 2 ];then
+	echo example : ./file_touch.sh lynq/CPE ap/Makefile
+	echo Create the lynq/CPE/ap/ directory and copy the ap/Makefile file to the lynq/CPE/ap/ directory
+	exit
+fi
+str=$1/$(dirname $2)
+echo $str/$(basename $2)
+mkdir -p $str
+cp $2 $str