mirror of
https://github.com/LostArtefacts/TR2X.git
synced 2024-12-04 03:53:02 +00:00
70 lines
1.8 KiB
Makefile
70 lines
1.8 KiB
Makefile
CWD := `pwd`
|
|
HOST_USER_UID := `id -u`
|
|
HOST_USER_GID := `id -g`
|
|
|
|
default: (build-win "debug")
|
|
|
|
_docker_push tag:
|
|
docker push {{tag}}
|
|
|
|
_docker_build dockerfile tag force="0":
|
|
#!/usr/bin/env sh
|
|
if [ "{{force}}" = "0" ]; then
|
|
docker images --format '{''{.Repository}}' | grep '^{{tag}}$'
|
|
if [ $? -eq 0 ]; then
|
|
echo "Docker image {{tag}} found"
|
|
exit 0
|
|
fi
|
|
echo "Docker image {{tag}} not found, trying to download from DockerHub"
|
|
if docker pull {{tag}}; then
|
|
echo "Docker image {{tag}} downloaded from DockerHub"
|
|
exit 0
|
|
fi
|
|
echo "Docker image {{tag}} not found, trying to build"
|
|
fi
|
|
|
|
echo "Building Docker image: {{dockerfile}} → {{tag}}"
|
|
docker build \
|
|
--progress plain \
|
|
. \
|
|
-f {{dockerfile}} \
|
|
-t {{tag}}
|
|
|
|
_docker_run *args:
|
|
@echo "Running docker image: {{args}}"
|
|
docker run \
|
|
--rm \
|
|
--user \
|
|
{{HOST_USER_UID}}:{{HOST_USER_GID}} \
|
|
--network host \
|
|
-v {{CWD}}:/app/ \
|
|
{{args}}
|
|
|
|
|
|
image-win force="1": (_docker_build "tools/docker/game-win/Dockerfile" "rrdash/tr2x" force)
|
|
|
|
push-image-win: (image-win "0") (_docker_push "rrdash/tr2x")
|
|
|
|
build-win target='debug': (image-win "0") (_docker_run "-e" "TARGET="+target "rrdash/tr2x")
|
|
|
|
package-win: (build-win "release") (_docker_run "rrdash/tr2x" "package")
|
|
|
|
output-current-version:
|
|
tools/get_version
|
|
|
|
output-current-changelog:
|
|
tools/output_current_changelog
|
|
|
|
clean:
|
|
-find build/ -type f -delete
|
|
-find tools/ -type f \( -ipath '*/out/*' -or -ipath '*/bin/*' -or -ipath '*/obj/*' \) -delete
|
|
-find . -mindepth 1 -empty -type d -delete
|
|
|
|
lint-imports:
|
|
tools/sort_imports
|
|
|
|
lint-format:
|
|
pre-commit run -a
|
|
|
|
lint: (lint-imports) (lint-format)
|