forked from deadsy/sdfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
52 lines (48 loc) · 838 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
DIRS = 3dp_nutbolt \
axochord \
axoloti \
benchmark \
bezier \
bjj \
bolt_container \
box \
camshaft \
cap \
challenge \
cylinder_head \
devo \
dust_collection \
extrusion \
fidget \
finial \
flask \
gears \
gas_cap \
geneva \
keycap \
maixgo \
mcg \
nordic \
nutcover \
nutsandbolts \
phone \
pillar_holder \
pool \
pottery_wheel \
simple_stl \
spiral \
sprue \
square_flange \
test \
text \
voronoi \
all:
for dir in $(DIRS); do \
$(MAKE) -C ./examples/$$dir $@; \
done
format:
goimports -w .
clean:
for dir in $(DIRS); do \
$(MAKE) -C ./examples/$$dir $@; \
done