We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7fa46a commit 8fc5101Copy full SHA for 8fc5101
.gitignore
@@ -1 +1,3 @@
1
+build/
2
+
3
*.sw*
Makefile
@@ -0,0 +1,11 @@
+SRCDIR = ./src
+all: $(SRCDIR)/*
+ mkdir -p build
4
+ for file in $^ ; do \
5
+ openscad -o $${file}.stl $${file} ; \
6
+ mv $${file}.stl build ; \
7
+ done
8
9
+clean:
10
+ rm build/*.stl
11
+ rmdir build
0 commit comments