mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-12-17 13:34:20 +01:00
Since commit 2687d20280, the Makefile
named release.mk stopped handling dependencies between recipes, because
they have to be executed separately (from different Github Actions
jobs).
There is no real benefit using a Makefile anymore. Replace them by
several individual release scripts for simplicity and readability.
6 lines
164 B
Plaintext
6 lines
164 B
Plaintext
# This file must be sourced from the release scripts directory
|
|
WORK_DIR="$PWD/work"
|
|
OUTPUT_DIR="$PWD/output"
|
|
|
|
VERSION="${VERSION:-$(git describe --tags --always)}"
|