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.

24 lines
469B

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