tof library

Dependents:   speed_robot

Makefile

Committer:
deepanaishtaweera174
Date:
2019-10-01
Revision:
0:1c8c01640f54

File content as of revision 0:1c8c01640f54:

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)