docker/Makefile

14 lines
297 B
Makefile
Raw Normal View History

2020-06-05 08:00:54 +00:00
SHELL := /bin/bash
.PHONY: clean
clean:
2020-11-27 21:45:21 +00:00
rm -rf ./dist
podman system prune -a
2020-06-05 08:00:54 +00:00
.PHONY: mingw
mingw:
mkdir -p ./dist/mingw
echo pwd is $(shell pwd)
2020-11-27 21:45:21 +00:00
podman build -t doodle_mingw -f ./MinGW.dockerfile .
podman run --rm --mount type=bind,src=$(shell pwd)/dist/mingw,dst=/mnt/export doodle_mingw