Fixed failure when settings.mk or config.mk doesn't exist.
This commit is contained in:
parent
36c4355735
commit
ff502f1d22
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -34,7 +34,7 @@ STL_FILES := $(patsubst %.scad,%.stl,$(COMPILED_SCAD_FILES))
|
|||
DXF_FILES := $(patsubst %.svg,%.dxf,$(SVG_FILES))
|
||||
|
||||
# Dependencies which may affect the result of all build products.
|
||||
GLOBAL_DEPS := Makefile config.mk settings.mk
|
||||
GLOBAL_DEPS := Makefile $(wildcard config.mk settings.mk)
|
||||
|
||||
# Everything. Also generates files which aren't compiled to anything else.
|
||||
all: $(GENERATED_FILES) $(DXF_FILES) $(STL_FILES)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue