Add basic change for v1453
Change-Id: I9497a61bbc3717f66413794a4e7dee0347c0bc33
diff --git a/mbtk/helloworld/Makefile b/mbtk/helloworld/Makefile
new file mode 100755
index 0000000..6f25aa9
--- /dev/null
+++ b/mbtk/helloworld/Makefile
@@ -0,0 +1,44 @@
+BUILD_ROOT = $(shell pwd)/..
+include $(BUILD_ROOT)/Make.defines
+
+LOCAL_PATH=$(BUILD_ROOT)/helloworld
+
+INC_DIR += \
+ -I$(LOCAL_PATH)/inc
+
+LIB_DIR +=
+
+LIBS +=
+
+CFLAGS +=
+
+DEFINE +=
+
+MY_FILES_PATH:=$(LOCAL_PATH)/src
+#ifeq ($(CONFIG_MBTK_QL_SUPPORT),y)
+#MY_FILES_PATH += $(LOCAL_PATH)/ql
+#endif
+
+#ifeq ($(CONFIG_MBTK_PLATFORM),linux)
+#MY_FILES_PATH += $(LOCAL_PATH)/platform/linux
+#endif
+
+MY_FILES_SUFFIX:=%.c %.cpp
+My_All_Files := $(foreach src_path,$(MY_FILES_PATH), $(shell find "$(src_path)" -type f))
+MY_SRC_LIST := $(filter $(MY_FILES_SUFFIX),$(My_All_Files))
+MY_SRC_LIST := $(MY_SRC_LIST:$(LOCAL_PATH)/%=%)
+LOCAL_SRC_FILES += $(MY_SRC_LIST)
+$(info LOCAL_SRC_FILES = $(LOCAL_SRC_FILES))
+
+dtarget := $(OUT_DIR)/bin/helloworld
+
+all: $(dtarget)
+
+$(dtarget):
+ @echo " BIN $@"
+ $(CC) $(CFLAGS) $(LOCAL_SRC_FILES) -o $@ $(DEFINE) $(INC_DIR) $(LIB_DIR) $(LIBS)
+ #cp $@ $(BUILD_ROOT)/bin
+
+clean:
+
+
diff --git a/mbtk/helloworld/inc/helloworld.h b/mbtk/helloworld/inc/helloworld.h
new file mode 100755
index 0000000..3ba512c
--- /dev/null
+++ b/mbtk/helloworld/inc/helloworld.h
@@ -0,0 +1,6 @@
+#ifndef _HELLO_WORLD_H
+#define _HELLO_WORLD_H
+
+#define HELLO_WORLD "Hello World!"
+
+#endif /* _HELLO_WORLD_H */
\ No newline at end of file
diff --git a/mbtk/helloworld/src/main.c b/mbtk/helloworld/src/main.c
new file mode 100755
index 0000000..2dec0e7
--- /dev/null
+++ b/mbtk/helloworld/src/main.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+
+#include "helloworld.h"
+
+int main(int argc, char *argv[])
+{
+ printf("%s\n", HELLO_WORLD);
+ return 0;
+}
\ No newline at end of file