hello

Revision:
0:69ce6d469c71
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Tue Oct 01 14:08:33 2019 +0000
@@ -0,0 +1,13 @@
+TARGET ?= NUCLEO_F411RE
+TOOLCHAIN ?= GCC_ARM
+
+.PHONY: all
+
+all:
+	mbed compile --library -m $(TARGET) -t $(TOOLCHAIN)
+
+debug:
+	mbed compile --library --options debug-info -m $(TARGET) -t $(TOOLCHAIN)
+
+clean-build:
+	mbed -c compile --library -m $(TARGET) -t $(TOOLCHAIN)