tof library
Diff: Makefile
- Revision:
- 0:1c8c01640f54
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Tue Oct 01 12:33:27 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)