You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
588B

  1. SHELL:=/bin/bash
  2. VERSION:=0.1.0
  3. build: cppse-starcry_$(VERSION)_amd64.deb
  4. cppse-starcry_$(VERSION)_amd64.deb:
  5. make ubuntu2404
  6. ubuntu2404:
  7. git clone --recursive https://github.com/rayburgemeestre/starcry || true
  8. pushd starcry && \
  9. git fetch --all && \
  10. git rebase origin/master && \
  11. git submodule update --init --recursive && \
  12. make clean && \
  13. make all && \
  14. make build-image && \
  15. make docs || true && \
  16. make docs || true && \
  17. make dockerize && \
  18. make push && \
  19. docker push docker.io/rayburgemeestre/build-starcry-ubuntu:24.04 && \
  20. popd
  21. clean:
  22. rm -rf starcry