7 lines
194 B
Makefile
7 lines
194 B
Makefile
|
|
default: (build "cartridge") (build "receptacle")
|
||
|
|
|
||
|
|
build target:
|
||
|
|
echo 'use <{{target}}.scad>; $fn = 128; {{target}}();' > part.scad
|
||
|
|
openscad -o {{target}}.stl part.scad
|
||
|
|
rm part.scad
|