hello

Committer:
shalutha
Date:
Tue Oct 01 14:08:33 2019 +0000
Revision:
0:69ce6d469c71
hello

Who changed what in which revision?

UserRevisionLine numberNew contents of line
shalutha 0:69ce6d469c71 1 TARGET ?= NUCLEO_F411RE
shalutha 0:69ce6d469c71 2 TOOLCHAIN ?= GCC_ARM
shalutha 0:69ce6d469c71 3
shalutha 0:69ce6d469c71 4 .PHONY: all
shalutha 0:69ce6d469c71 5
shalutha 0:69ce6d469c71 6 all:
shalutha 0:69ce6d469c71 7 mbed compile --library -m $(TARGET) -t $(TOOLCHAIN)
shalutha 0:69ce6d469c71 8
shalutha 0:69ce6d469c71 9 debug:
shalutha 0:69ce6d469c71 10 mbed compile --library --options debug-info -m $(TARGET) -t $(TOOLCHAIN)
shalutha 0:69ce6d469c71 11
shalutha 0:69ce6d469c71 12 clean-build:
shalutha 0:69ce6d469c71 13 mbed -c compile --library -m $(TARGET) -t $(TOOLCHAIN)