docker/Makefile

14 lines
297 B
Makefile

SHELL := /bin/bash
.PHONY: clean
clean:
rm -rf ./dist
podman system prune -a
.PHONY: mingw
mingw:
mkdir -p ./dist/mingw
echo pwd is $(shell pwd)
podman build -t doodle_mingw -f ./MinGW.dockerfile .
podman run --rm --mount type=bind,src=$(shell pwd)/dist/mingw,dst=/mnt/export doodle_mingw