您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

24 行
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