Makefile 383 B

1234567891011121314151617181920
  1. # Set the location of the top of the MicroPython repository.
  2. MICROPYTHON_TOP = ./lib/micropython
  3. PACKAGE_DIR = ./lib/micropython-build
  4. SRC_C = ./lib/micropython-port/modflipperzero.c
  5. SRC_QSTR += ./lib/micropython-port/modflipperzero.c
  6. include ./Makefile.micropython
  7. $(PACKAGE_DIR): all
  8. .PHONY: build
  9. build: $(PACKAGE_DIR)
  10. ufbt build
  11. .PHONY: launch
  12. launch: build
  13. ufbt launch