summaryrefslogtreecommitdiff
path: root/MakefileBasedBuild/app/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'MakefileBasedBuild/app/Makefile')
-rw-r--r--MakefileBasedBuild/app/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/MakefileBasedBuild/app/Makefile b/MakefileBasedBuild/app/Makefile
index bd2bbbe..2eea34a 100644
--- a/MakefileBasedBuild/app/Makefile
+++ b/MakefileBasedBuild/app/Makefile
@@ -65,6 +65,8 @@ OBJ = obj
# Tools
#-------------------------------------------------------------------------------
+UNAMEO=$(shell uname -o)
+
# Tool suffix when cross-compiling
CROSS_COMPILE = arm-none-eabi-
@@ -194,5 +196,8 @@ clean:
rm -fR $(OBJ) $(BIN)
ifeq ($(filter $(MAKECMDGOALS), clean), )
+# cygwin toolchain screws up .d files with ':' characters in drive:\ paths
+ifneq ($(UNAMEO),Cygwin)
-include $(DEPS)
endif
+endif