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.

20 lines
343B

  1. SHELL:=/bin/bash
  2. VERSION:=1.0
  3. build: msxsaver_$(VERSION)_amd64.deb
  4. msxsaver_$(VERSION)_amd64.deb:
  5. make ubuntu2404
  6. ubuntu2404:
  7. git clone --recursive https://github.com/rayburgemeestre/msxsaver || true
  8. pushd msxsaver && \
  9. git pull --rebase && \
  10. make build && \
  11. cp -prv msxsaver_1.0_amd64.deb ../ && \
  12. popd
  13. clean:
  14. rm -rf msxsaver