From ff502f1d22de79648abc2005f83b7d462791ab9a Mon Sep 17 00:00:00 2001 From: Michael Schwarz Date: Sun, 8 Mar 2015 14:06:50 +0100 Subject: Fixed failure when settings.mk or config.mk doesn't exist. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a4b7a7e..01a0e45 100644 --- a/Makefile +++ b/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) -- cgit