[Feature]add MT2731_MP2_MR2_SVN388 baseline version

Change-Id: Ief04314834b31e27effab435d3ca8ba33b499059
diff --git a/src/bsp/lk/tools/Makefile b/src/bsp/lk/tools/Makefile
new file mode 100644
index 0000000..af4c825
--- /dev/null
+++ b/src/bsp/lk/tools/Makefile
@@ -0,0 +1,17 @@
+
+all: lkboot mkimage
+
+LKBOOT_SRCS := lkboot.c liblkboot.c network.c
+LKBOOT_DEPS := network.h liblkboot.h ../app/lkboot/lkboot_protocol.h
+LKBOOT_INCS :=
+lkboot: $(LKBOOT_SRCS) $(LKBOOT_DEPS)
+	gcc -Wall -o $@ $(LKBOOT_INCS) $(LKBOOT_SRCS)
+
+MKIMAGE_DEPS := bootimage.h ../lib/bootimage/include/lib/bootimage_struct.h
+MKIMAGE_SRCS := mkimage.c bootimage.c ../lib/mincrypt/sha256.c
+MKIMAGE_INCS := -I../lib/mincrypt/include -I../lib/bootimage/include
+mkimage: $(MKIMAGE_SRCS) $(MKIMAGE_DEPS)
+	gcc -Wall -g -o $@ $(MKIMAGE_INCS) $(MKIMAGE_SRCS)
+
+clean::
+	rm -f lkboot mkimage