Move everything to box_frame/
[clinton/prusa3.git] / Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644 (file)
index 59d06dc..0000000
--- a/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-#openscad -o output/bushing.stl bushing.scad
-
-INCLUDES = $(wildcard inc/*.scad)
-
-MODELS = $(filter-out configuration.scad, $(wildcard *.scad))
-
-STL_FILES_1 = $(foreach src, $(MODELS),output/$(src))
-STL_FILES = $(STL_FILES_1:%.scad=%.stl)
-
-all: $(STL_FILES)
-
-output/%.stl: %.scad $(INCLUDES) configuration.scad
-       mkdir -p output
-       openscad -o $@ $<