diff options
author | Michael Schwarz <michi.schwarz@gmail.com> | 2015-03-08 14:06:50 +0100 |
---|---|---|
committer | Michael Schwarz <michi.schwarz@gmail.com> | 2015-03-08 14:06:50 +0100 |
commit | ff502f1d22de79648abc2005f83b7d462791ab9a (patch) | |
tree | 7863d9de03957f227d6f2f0a029f588e6fdba3c1 | |
parent | 36c43557352828b7b9738f8114c493c5fd6a5e9a (diff) | |
download | pogojig-ff502f1d22de79648abc2005f83b7d462791ab9a.tar.gz pogojig-ff502f1d22de79648abc2005f83b7d462791ab9a.tar.bz2 pogojig-ff502f1d22de79648abc2005f83b7d462791ab9a.zip |
Fixed failure when settings.mk or config.mk doesn't exist.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |