Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- SHELL:=/bin/bash
-
- VERSION:=0.1.0
-
- build: cppse-starcry_$(VERSION)_amd64.deb
-
- cppse-starcry_$(VERSION)_amd64.deb:
- make ubuntu2404
-
- ubuntu2404:
- git clone --recursive https://github.com/rayburgemeestre/starcry || true
- pushd starcry && \
- git fetch --all && \
- git rebase origin/master && \
- git submodule update --init --recursive && \
- make clean && \
- make all && \
- make build-image && \
- make docs || true && \
- make docs || true && \
- make dockerize && \
- make push && \
- docker push docker.io/rayburgemeestre/build-starcry-ubuntu:24.04 && \
- popd
-
- clean:
- rm -rf starcry
|