Page MenuHomec4science

Makefile
No OneTemporary

File Metadata

Created
Mon, Apr 7, 06:26

Makefile

OPENSCAD = openscad
SCADs = $(shell find . -maxdepth 1 -name '*.scad')
STLs = $(SCADs:.scad=.stl)
all: $(STLs)
%.stl: %.scad
$(OPENSCAD) -render $< -o $@

Event Timeline