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
-
- UBUNTU_VERSION ?= 2404
- CODENAME ?= noble
-
- VERSION:=1.0
-
- build: $(CODENAME)/cppse-msxsaver_$(VERSION)_amd64.deb
-
- $(CODENAME)/cppse-msxsaver_$(VERSION)_amd64.deb:
- mkdir -p $(CODENAME)
- make ubuntu$(UBUNTU_VERSION)
-
- ubuntu$(UBUNTU_VERSION):
- 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
|