diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2023-01-24 02:55:20 +0100 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2023-01-24 02:55:20 +0100 |
commit | f2074c15ceb9e3a4511343fd2d2738cda804691e (patch) | |
tree | 1f15c63e2068ac4280136d1d4981d3e437ef097d /Makefile | |
parent | c08de309e09f1153b3187f3e9b4f823ca1d45d3b (diff) | |
download | oscad_gridfinity-f2074c15ceb9e3a4511343fd2d2738cda804691e.tar.gz |
Multibuild for bitstorage
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -24,6 +24,17 @@ stl: $(STLDIR) $(STL) $(STLDIR)/gridfinity.stl: gridfinity.scad @echo +$(STLDIR)/bitstorage_1x2.stl: bitstorage.scad + @echo [ STL ] $< + @$(SCAD) $(STLOPTS) -D ux=2 -o $@ $< + +$(STLDIR)/bitstorage_1x1.stl: bitstorage.scad + @echo [ STL ] $< + @$(SCAD) $(STLOPTS) -D ux=1 -o $@ $< + +$(STLDIR)/bitstorage.stl: $(STLDIR)/bitstorage_1x1.stl $(STLDIR)/bitstorage_1x2.stl + @echo + $(STLDIR)/%.stl: %.scad @echo [ STL ] $< @$(SCAD) $(STLOPTS) -o $@ $< |