summaryrefslogtreecommitdiff
path: root/Makefile
blob: c91ea4739c4916bfff7a76b4192977a49bc2411a (plain)
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
INKSCAPE ?= inkscape
OPENSCAD ?= openscad
PYTHON ?= python2

PYTHON_CMD := PYTHONPATH="support:$$PYTHONPATH" $(PYTHON)

# Used by dxf_export/main.sh
export INKSCAPE OPENSCAD

# Run generate_scad.sh to get the names of all OpenSCAD files that should be generated using that same script.
GENERATED_FILES := $(addsuffix .scad,$(basename $(shell ./generate_sources.sh)))
GENERATED_SVG_FILES := $(filter %.svg, $(GENERATED_FILES))
GENERATED_SCAD_FILES := $(filter %.scad, $(GENERATED_FILES))

# Source SVG files.
SVG_FILES := $(shell find src -name '*.svg') $(GENERATED_SVG_FILES)

# Only OpenSCAD files whose names do not start with `_' are compiled to STL.
COMPILED_SCAD_FILES := $(foreach i,$(shell find src -name '*.scad') $(GENERATED_SCAD_FILES),$(if $(filter-out _%,$(notdir $(i))),$(i)))

# Makefiles which are generated while compiling to record dependencies.
DEPENDENCY_FILES := $(patsubst %.scad,%.d,$(COMPILED_SCAD_FILES))

# All files that may be generated from the source files.
STL_FILES := $(patsubst %.scad,%.stl,$(COMPILED_SCAD_FILES))
DXF_FILES := $(patsubst %.svg,%.dxf,$(SVG_FILES))

# Everything. Also generates files which aren't compiled to anything else.
all: $(GENERATED_FILES) $(DXF_FILES) $(STL_FILES)

# Everything^-1.
clean:
	rm -rf $(GENERATED_FILES) $(DXF_FILES) $(STL_FILES) $(DEPENDENCY_FILES)

# Include the local configuration file and the dependency files. Needs to be included after the `all' target has been defined.
-include config.mk $(DEPENDENCY_FILES)

# Rule to convert an SVG file to a DXF file.
%.dxf: %.svg
	$(PYTHON_CMD) -m dxf_export $< $@

# Rule to compile an OpenSCAD file to an STL file. We require all DXF files to exist before an OpenSCAD file can be used to generate an STL file. Additional dependencies are read from the included makefiles generated during compiling.
%.stl: %.scad  | $(DXF_FILES)
	$(PYTHON_CMD) -m openscad $< $@ $*.d

# Rule for automaticlaly generated OpenSCAD files.
$(GENERATED_FILES): generate_sources.sh
	./generate_sources.sh $@