Makefile 281 B

12345678910111213141516
  1. # Set the location of the top of the MicroPython repository.
  2. MICROPYTHON_TOP = ./lib/micropython
  3. PACKAGE_DIR = ./lib/micropython-build
  4. include ./Makefile.micropython
  5. $(PACKAGE_DIR): all
  6. .PHONY: build
  7. build: $(PACKAGE_DIR)
  8. ufbt build
  9. .PHONY: launch
  10. launch: build
  11. ufbt launch