Makefile 350 B

1234567891011121314151617181920212223
  1. .PHONY: update
  2. update:
  3. git submodule update --remote lib/micropython && git add lib/micropython
  4. .PHONY: build
  5. build: update
  6. ufbt build
  7. .PHONY: launch
  8. launch: build
  9. ufbt launch
  10. .PHONY: clean
  11. clean:
  12. ufbt -c
  13. .PHONY: pages
  14. pages:
  15. source venv/bin/activate && sphinx-build docs/pages dist/pages
  16. .PHONY: publish
  17. publish: pages
  18. ./publish.sh pages