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.
|
- SHELL:=/bin/bash
-
- VERSION:=1.0
-
- build: msxsaver_$(VERSION)_amd64.deb
-
- msxsaver_$(VERSION)_amd64.deb:
- make ubuntu2404
-
- ubuntu2404:
- git clone --recursive https://github.com/rayburgemeestre/msxsaver || true
- pushd msxsaver && \
- git pull --rebase && \
- make build && \
- cp -prv msxsaver_1.0_amd64.deb ../ && \
- popd
-
- clean:
- rm -rf msxsaver
|