hello

Makefile

Committer:
shalutha
Date:
2019-10-01
Revision:
0:69ce6d469c71

File content as of revision 0:69ce6d469c71:

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)