mirror of
https://github.com/Luzifer/3dmodels.git
synced 2024-12-23 02:41:19 +00:00
9 lines
269 B
Makefile
9 lines
269 B
Makefile
sourcefiles := $(wildcard *.jscad)
|
|
|
|
default: $(sourcefiles)
|
|
|
|
%.jscad: docker-build
|
|
docker run --rm -i -v "$(CURDIR):$(CURDIR)" -w "$(CURDIR)" registry.local/openjscad:cli "$@"
|
|
|
|
docker-build:
|
|
docker build -q -f ci/Dockerfile.compile -t registry.local/openjscad:cli ci
|